/* ============================================================================
   CONSOLIDATED STYLESHEET FOR ALL PAGES
   This file consolidates CSS from all HTML pages to ensure consistent styling
   across the entire website with a single point of control for themes.
   
   Pages included:
   - index.html (homepage)
   - agb.html (terms & conditions)
   - bestellen.html (order page)
   - datenschutz.html (privacy policy)
   - impressum.html (imprint/legal)
   - warenkorb.html (shopping cart)
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');

/* ============================================================================
   CSS VARIABLES (DESIGN SYSTEM)
   ============================================================================ */

:root {
  --neon-pink: #ff0080;
  --neon-cyan: #00ffff;
  --neon-purple: #8000ff;
  --dark-background: #000;
}

/* ============================================================================
   GLOBAL RESET & BASE STYLES
   ============================================================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Courier New", monospace;
  background: linear-gradient(135deg, #0a0a0a, #1a0033, #000511);
  color: #00ffff;
  overflow-x: hidden;
  min-height: 100vh;
}

html, body {
  width: 100%;
  height: 100%;
}


/* ============================================================================
   HEADER & FOOTER
   ============================================================================ */

header {
  background: #000;
  padding: 1rem 1rem;
  text-align: center;
  border-bottom: 2px solid #ff0080;
  box-shadow: 0 0 20px #ff0080;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #888;
  margin-top: 2rem;
}

footer a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00ffff;
}

/* ============================================================================
   LOGO & BRANDING STYLES (Neon Logo Container)
   ============================================================================ */

      .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
        cursor: pointer;

      }

.logo-container:hover {
  transform: scale(1.05);
}

.neon-text-main {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease-in-out;
  transform: skewX(-8deg);
  display: inline-block;
}

.glow-cyan {
  color: var(--neon-cyan);
  text-shadow:
    0 0 7px var(--neon-cyan),
    0 0 20px var(--neon-cyan),
    0 0 40px var(--neon-pink),
    0 0 80px var(--neon-purple);
}

.glow-pink {
  color: var(--neon-pink);
  text-shadow:
    0 0 7px var(--neon-pink),
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-cyan),
    0 0 80px var(--neon-purple);
}

.fragment-icon-glow {
  filter: drop-shadow(0 0 6px var(--neon-cyan))
          drop-shadow(0 0 12px var(--neon-pink))
          drop-shadow(0 0 25px var(--neon-purple));
  transition: all 0.3s ease-in-out;
}

.logo-container:hover .fragment-icon-glow {
  filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px var(--neon-pink));
}

      .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
      }



      .logo-text-group {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .bestellen-logo-text-group {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
      }


      .logo-text {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        line-height: 1;
      }

      .slogan {
        margin-top: 1rem;
        font-size: clamp(1rem, 3vw, 1.2rem);
        color: #ffffffcc;
        text-shadow: 0 0 5px #00ffff;
        font-family: "Courier New", monospace;
      }


/* ============================================================================
   MAIN CONTENT AREA
   ============================================================================ */

main {
  max-width: 900px;
  margin: 0rem auto;
  background: rgba(0, 0, 0, 0.6);
  padding: clamp(1rem, 4vw, 2rem);
  border-radius: 1rem;
  /*box-shadow: 0 0 25px rgba(128, 0, 255, 0.4);
  border: 2px solid #8000ff;*/
  margin-left: clamp(0.5rem, 2vw, auto);
  margin-right: clamp(0.5rem, 2vw, auto);
}

.bestellen-main {
  max-width: 700px;
        margin: 2rem auto;
      background: rgba(0, 0, 0, 0.6);
      padding: clamp(1rem, 4vw, 2rem);
      border-radius: 1rem;
      box-shadow: 0 0 25px rgba(128, 0, 255, 0.4);
      border: 2px solid #8000ff;
      margin-left: clamp(0.5rem, 2vw, auto);
      margin-right: clamp(0.5rem, 2vw, auto);
}

.bestellen-main h1 {
  color: #00ffff;
  font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;

}

/* ============================================================================
   HEADINGS
   ============================================================================ */

h1, h2, h3 {
  text-shadow: 0 0 10px #ff0080;
}

h1 {
  color: #00ffff;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-top: 0;
}

h2 {
  color: #ff0080;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  border-bottom: 1px solid rgba(255, 0, 128, 0.3);
  padding-bottom: 0.5rem;
}

h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
}

h4 {
  color: #ff0080;
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  text-align: center;
  text-shadow: 0 0 10px #ff0080;
}

/* ============================================================================
   PARAGRAPH & TEXT ELEMENTS
   ============================================================================ */

p {
  color: #e0e0e0;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.6;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff0080;
  text-shadow: 0 0 5px #ff0080;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.2;
  margin-left: 1.5rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* ============================================================================
   CONTENT CONTAINERS & BOXES
   ============================================================================ */

.highlight-box {
  background: rgba(255, 0, 128, 0.1);
  border: 1px solid rgba(255, 0, 128, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.warning-box {
  background: rgba(255, 102, 102, 0.1);
  border: 1px solid rgba(255, 102, 102, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.info-box {
  background: rgba(0, 255, 255, 0.06);
  border: 1px solid #00ffff;
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.info-box ul {
  margin-left: 1rem;
  margin-top: 0.3rem;
}

.info-box li {
  margin-bottom: 0.2rem;
  color: #cfcfcf;
}

.contact-info {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* ============================================================================
   Hero SECTION
   ============================================================================ */

 .hero {
        text-align: center;
        padding: 2rem 1rem;
        position: relative;
        z-index: 5;
      }

      .hero h1 {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
        text-transform: uppercase;
        text-shadow: 0 0 10px #00ffff, 0 0 20px #ff0080;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

      .hero p {
        font-size: clamp(1rem, 3vw, 1.3rem);
        color: #ff66c4;
        margin-top: 1rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
      }

/* ============================================================================
   Feature-Cards SECTION
   ============================================================================ */
  .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 2rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .feature-card {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #8000ff;
        border-radius: 1rem;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 0 30px rgba(255, 0, 128, 0.4);
        transition: transform 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-5px);
      }

      .feature-card h3 {
        color: #ff0080;
        margin-bottom: 1rem;
        font-size: clamp(1.1rem, 3vw, 1.3rem);
      }

      .feature-card p {
        color: #e0e0e0;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.4;
      }

      /* ============================================================================
          Star Button Styles
         ============================================================================ */

      .star-button {
        position: relative;
        width: clamp(150px, 40vw, 220px);
        height: clamp(150px, 40vw, 220px);
        background: none;
        border: none;
        cursor: pointer;
        margin: 1rem 2rem;
        transition: all 0.3s ease;
        display: flex;
                   
      }

      .star-button:hover {
        transform: scale(1.1) rotate(5deg);
      }

      .star-shape {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, #00ffff 20%, #ff0080 70%);
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
        transition: all 0.3s ease;
      }

      .star-button:hover .star-shape {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
      }

      .button-text {
        position: absolute;
        top: 50%;
        left: 52%;
        transform: translate(-50%, -50%) rotate(35deg);
        color: black;
        font-weight: bold;
        font-size: clamp(1rem, 2vw, 1.1rem);
        text-align: center;
        z-index: 1;
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
        line-height: 1.0;
        
        
      }



      /* ============================================================================
         DEMO SECTION
         ============================================================================ */
       .demo_preis {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 2rem 1rem;
        align-items: center;
        align-content: center;
        position: relative;
        z-index: 5;
      }

      .demo-section {
        text-align: center;
        width: 100%;
        max-width: 500px;
        border: 2px solid #8000ff;
        border-radius: 1rem;
        background: rgba(0, 0, 0, 0.6);
        position: relative;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
      }

   
      .demo-section h3 {
        color: #ff0080;
        margin-bottom: 1rem;
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        font-weight: 800;
        text-shadow: 0 0 10px #ff0080;
      }

      .demo-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        width: 100%;
      }

      .demo-buttons a {
        flex: 1;
        min-width: 120px;
        max-width: 200px;
        text-align: center;
        padding: 1rem;
        background: linear-gradient(135deg, #ff0080, #00ffff);
        color: black;
        font-weight: bold;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
        transition: all 0.3s ease;
        font-size: clamp(0.8rem, 2.5vw, 0.8rem);
      }

      .demo-buttons a:hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
      }

      .demo_preis .button-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        margin-top: 0;
        margin: 0;
        padding: 0;
        border-radius: 0;
      }

        .button-container2 {
        display: flex;
        flex-direction: column;
        
        gap: 1rem;
        justify-content: center;
       
        margin-top: 0;
        margin: 0;
        padding: 0;
        border-radius: 0;
      }

/* ============================================================================
   BUTTONS & CLICKABLE ELEMENTS
   ============================================================================ */

button,
.btn,
a.btn {
  padding: clamp(0.8rem, 3vw, 1rem);
  background: linear-gradient(135deg, #ff0080, #00ffff);
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

button:hover:not(:disabled),
.btn:hover:not(:disabled),
a.btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

button:disabled,
.btn:disabled,
a.btn:disabled {
  background: #333;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.back-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff0080, #00ffff);
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
}

.back-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
  color: black;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  border-radius: 0.8rem;
  /*border: 1px solid #00ffff55;*/
  padding: 1rem;
}

.button-container2 {

  width: 100%;


  border-radius: 0.8rem;
  /*border: 1px solid #00ffff55;*/
}

.order-button {
  flex: 2;
  padding: clamp(0.8rem, 3vw, 1rem);
  background: linear-gradient(135deg, #ff0080, #00ffff);
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.order-button:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.order-button:disabled {
  background: #333;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.zurueck-button {
  flex: 1;
  background: linear-gradient(135deg, #666, #333);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  padding: clamp(0.8rem, 3vw, 1rem);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.zurueck-button:hover {
  background: linear-gradient(135deg, #777, #444);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.demo-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.demo-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.neon-cyan {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 12px #00ffff;
}

.neon-pink {
  background: #ff0080;
  color: #000;
  box-shadow: 0 0 12px #ff0080;
}

.demo-btn:hover {
  transform: scale(1.05);
}

.modal-close-btn {
  background: linear-gradient(135deg, #00ffaa, #00ffff);
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.modal-close-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.6);
}


.neon-cyan {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 12px #00ffff;
}

.neon-pink {
  background: #ff0080;
  color: #000;
  box-shadow: 0 0 12px #ff0080;
}

.warning-modal-btn {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #ff0080, #00ffff);
  color: black;
  border: none;
  font-weight: bold;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.7);
  transition: all 0.25s ease-in-out;
}

.warning-modal-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.9);
}

.success-modal-btn {
  background: linear-gradient(90deg, #00ffff, #ff0080);
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #00ffff80;
  transition: transform 0.15s ease;
}

.success-modal-btn:hover {
  transform: scale(1.05);
}

/* ============================================================================
   FORMS & INPUT ELEMENTS
   ============================================================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.neon-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  margin-top: 0.6rem;
  font-size: 1.05rem;
  font-family: "Inter", sans-serif;
  color: var(--neon-cyan);
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--neon-purple);
  border-radius: 12px;
  outline: none;
  transition: all 0.25s ease-in-out;
  box-shadow:
    0 0 6px rgba(128, 0, 255, 0.6),
    inset 0 0 6px rgba(0, 0, 0, 0.7);
}

.neon-input::placeholder {
  color: #888;
  text-shadow: 0 0 4px rgba(128, 0, 255, 0.5);
}

.neon-input:focus {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 255, 255, 0.05);
  box-shadow:
    0 0 10px var(--neon-cyan),
    0 0 20px rgba(0, 255, 255, 0.7),
    inset 0 0 6px rgba(0, 255, 255, 0.4);
  transform: scale(1.02);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1.05rem;
  font-family: "Courier New", monospace;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #00ffff;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  background: rgba(0, 255, 255, 0.05);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
  accent-color: #ff0080;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
}

input[type="radio"] {
  transform: scale(1.6);
  accent-color: #ff0080;
  cursor: pointer;
}

.checkbox-group {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
}

.checkbox-label {
  flex: 1;
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label a {
  color: #00ffff;
  text-decoration: none;
  border-bottom: 1px dashed #00ffff;
}

.checkbox-label a:hover {
  color: #ff0080;
}

.input-group {
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid #8000ff;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: large;
}

.zwei-spalten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.preis-container {
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
    display: flex;
  flex-direction: column;
}

.preis-info {
  color: #00ffff;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 10px #00ffff;
}

/* ============================================================================
   ORDER & CART SPECIFIC STYLES
   ============================================================================ */

.bestelluebersicht {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #8000ff;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.bestelluebersicht h2 {
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(128, 0, 255, 0.3);
  gap: 1rem;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #ffffffcc;
  font-weight: bold;
}

.detail-value {
  color: #00ffff;
  text-align: right;
}

.preis-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #ff0080;
}

.preis-row .detail-label {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #ff0080;
}

.preis-row .detail-value {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: bold;
  color: #ff66c4;
  text-shadow: 0 0 10px #ff66c4;
}

.stammkunde-box {
  background: rgba(0, 255, 170, 0.1);
  border: 2px solid #00ffaa;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  animation: slideIn 0.5s ease;
}

.stammkunde-box h3 {
  color: #00ffaa;
  margin-bottom: 1rem;
}

.stammkunde-box p {
  color: #e0ffe0;
}

.warenkorb-content {
  display: none;
}

.warenkorb-content.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* ============================================================================
   FILE UPLOAD SECTION
   ============================================================================ */

.upload-section {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px dashed #8000ff;
  background: rgba(128, 0, 255, 0.1);
}

.upload-section h2 {
  margin-bottom: 0.5rem;
}

.upload-section p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.upload-area {
  border: 3px dashed #8000ff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  background: rgba(128, 0, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.upload-area:hover {
  border-color: #00ffff;
  background: rgba(0, 255, 255, 0.05);
}

.upload-area.dragover {
  border-color: #ff0080;
  background: rgba(255, 0, 128, 0.08);
  transform: scale(1.02);
}

.upload-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.upload-text {
  color: #00ffff;
    font-size: 2rem;
  font-weight: bolder;
  margin-bottom: 0.5rem;
}

.upload-hint {
  color: #aaa;
  font-size: 0.85rem;
}

#file-input {
  display: none;
}

.zaehler_zurueck {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.zaehler_zurueck button {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-left: 3rem;
}

.zaehler_zurueck button:hover {
  transform: scale(1.05); 


}


.file-list {
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.file-item {
  position: relative;
  aspect-ratio: 1 / 1.33;
  border: 2px solid #00ffff;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.file-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.file-name {
  color: #00ffff;
  font-size: 0.85rem;
  word-break: break-all;
}

.file-size {
  color: #888;
  font-size: 0.8rem;
}

.remove-file {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 10;
  width: 28px;
  height: 28px;
  padding: 0;
  background: rgba(255, 0, 128, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.remove-file:hover {
  transform: scale(1.15);
  background: rgba(255, 0, 128, 1);
}

.file-counter {
  margin-top: 0.8rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(255, 0, 128, 0.4), transparent),
              radial-gradient(circle at bottom right, rgba(0, 255, 255, 0.4), transparent),
              rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 0, 128, 0.7);
  box-shadow:
    0 0 10px rgba(255, 0, 128, 0.6),
    0 0 18px rgba(0, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fdfdfd;
}

.file-counter::before {
  content: "📸";
  font-size: 1rem;
}

.file-counter strong {
  color: #00ffff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.8);
}

.progress-container {
  display: none;
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #8000ff;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff0080, #00ffff);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 8px;
}

.progress-text {
  text-align: center;
  color: #00ffff;
  margin-top: 0.3rem;
  font-size: 1.5rem;
}

#upload-start-btn {
  display: none;
  float: right;
  margin-top: 1.2rem;
  padding: 0.9rem 1.6rem;
  background: linear-gradient(135deg, #ff0080, #00eaff);
  color: black;
  font-weight: bold;
  border-radius: 12px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow:
    0 0 12px rgba(255, 0, 128, 0.8),
    0 0 20px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

#upload-start-btn:hover:not(:disabled) {
  transform: translateX(4px) scale(1.05);
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.8),
    0 0 35px rgba(255, 0, 128, 0.9);
}

#upload-start-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.upload-success-badge {
  margin-top: 1rem;
  padding: 0.8rem 1.4rem;
  background: linear-gradient(135deg, #00ffaa, #00ffff);
  color: #000;
  font-weight: bold;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(0,255,170,0.7);
  animation: fadeInBadge 0.6s ease;
}

/* ============================================================================
   PAYMENT SECTION
   ============================================================================ */

.payment-section {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #00ffaa55;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.payment-option input {
  transform: scale(1.2);
  accent-color: #ff0080;
}

.payment-option span {
  font-size: 1.25rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

.payment-description {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 0.2rem;
}

.paypal-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00ffff55;
}

.bank-hint {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.note-text {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.6rem;
}

/* ============================================================================
   WORKFLOW SECTION
   ============================================================================ */

.workflow-box {
  background: rgba(255, 0, 128, 0.1);
  border: 2px solid #8000ff;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.workflow-box h4 {
  color: #ff0080;
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  text-align: center;
  text-shadow: 0 0 10px #ff0080;
}

.workflow-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.workflow-steps li {
  color: #e0e0e0;
  margin-bottom: 0.8rem;
  padding-left: 2.5rem;
  position: relative;
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  counter-increment: step-counter;
}

.workflow-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: linear-gradient(135deg, #ff0080, #00ffff);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bolder;
  font-size: 0.8rem;
}

/* ============================================================================
   LOADING & SPINNER
   ============================================================================ */

.loading-container {
  text-align: center;
  padding: 3rem 1rem;
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #00ffff;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 1rem;
}

/* ============================================================================
   MODAL OVERLAYS & DIALOGS
   ============================================================================ */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-modal {
  background: linear-gradient(135deg, rgba(0, 255, 170, 0.15), rgba(0, 255, 255, 0.15));
  border: 3px solid #00ffaa;
  border-radius: 20px;
  padding: 2rem;
  max-width: 520px;
  margin: 1rem;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 30px rgba(0, 255, 170, 0.4),
    inset 0 0 20px rgba(0, 255, 170, 0.1);
  animation: modalSlideIn 0.4s ease;
  backdrop-filter: blur(10px);
}

.success-modal h4 {
  color: #00ffaa;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(0, 255, 170, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.success-modal .emoji {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  animation: bounce 1s ease infinite;
}

.success-modal p {
  color: #e0ffe0;
  font-size: clamp(1rem, 3vw, 1.1rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.modal-close-x {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #00ffaa;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.modal-close-x:hover {
  color: #00ffff;
}

.demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.demo-modal.show {
  display: flex;
}

.demo-modal-content {
  background: #0a0a0a;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid var(--neon-pink);
  box-shadow: 0 0 24px var(--neon-pink);
  max-width: 420px;
  margin: 1rem;
  text-align: center;
}

.demo-modal-content h2 {
  color: var(--neon-pink);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--neon-pink);
}

.demo-modal-content p {
  color: #e0e0e0;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.demo-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.warning-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(6px);
}

.warning-modal-overlay.show {
  display: flex;
}

.warning-modal {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 128, 0.15),
    rgba(0, 255, 255, 0.15)
  );
  border: 3px solid #ff0080;
  border-radius: 20px;
  max-width: 420px;
  margin: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow:
    0 0 30px rgba(255, 0, 128, 0.4),
    inset 0 0 20px rgba(255, 0, 128, 0.25),
    0 0 60px rgba(0, 255, 255, 0.3);
  animation: modalSlideWarn 0.35s ease;
}

.warning-modal h3 {
  color: #ff0080;
  text-shadow: 0 0 10px #ff0080;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.warning-modal p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.success-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.success-modal-overlay.show {
  display: flex;
}

.success-modal-overlay .success-modal {
  background: #0d0d0d;
  border: 2px solid #00ffff;
  box-shadow: 0 0 25px #00ffff80, 0 0 50px #ff008080;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  animation: popIn 0.25s ease-out;
}

.success-modal-overlay .success-modal h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  text-shadow: 0 0 10px #00ffff;
}

.success-modal-overlay .success-modal p {
  color: #ffffff;
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* ============================================================================
   ERROR MESSAGES
   ============================================================================ */

.error-message {
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  text-align: center;
  display: none;
  background: rgba(255, 102, 102, 0.1);
  border: 2px solid #ff6666;
  color: #ff9999;
  font-size: 0.9rem;
}

.error-container {
  text-align: center;
  padding: 2rem 1rem;
}

.error-container h2 {
  color: #ff6666;
  margin-bottom: 1rem;
}

.error-container p {
  color: #ff9999;
  margin-bottom: 1.5rem;
}

/* ============================================================================
   NOTIFICATIONS
   ============================================================================ */

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem;
  border-radius: 0.5rem;
  color: white;
  z-index: 1200;
  animation: slideIn 0.3s ease-out;
  max-width: 320px;
  font-size: 0.9rem;
}

.notification.warning {
  background: rgba(255, 153, 0, 0.9);
  border: 1px solid #ff9900;
}

.notification.error {
  background: rgba(255, 51, 51, 0.9);
  border: 1px solid #ff3333;
}

/* ============================================================================
   ANIMATIONS & KEYFRAMES
   ============================================================================ */

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInNew {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes glowIn {
  0% {
    opacity: 0;
    box-shadow: 0 0 0px rgba(0,255,255,0);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(0,255,255,0.4);
  }
}

@keyframes fadeInBadge {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes modalSlideWarn {
  from {
    transform: translateY(-40px) scale(0.85);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* ============================================================================
   FLOATING IMAGES (Homepage Background)
   ============================================================================*/

      .bild_container {
        display: flex;
        justify-content: center;
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem;
        flex-direction: column;
        overflow: hidden;
      }

.floating-image1,
.floating-image2,
.floating-image3,
.floating-image4,
.floating-image5,
.floating-image6,
.floating-image7,
.floating-image8,
.floating-image9,
.floating-image10 {
  position: absolute;
  width: clamp(50px, 12vw, 100px);
  height: clamp(50px, 12vw, 100px);
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #ff0080;
  box-shadow: 0 0 25px rgba(255, 0, 128, 1);
  z-index: 10;
  opacity: 1;
  transition: all 0.3s ease;
}

.floating-image1 { top: 8%; left: 5%; transform: rotate(15deg); }
.floating-image2 { top: 12%; right: 8%; transform: rotate(-20deg); }
.floating-image3 { top: 25%; left: 2%; transform: rotate(-10deg); }
.floating-image4 { top: 30%; right: 3%; transform: rotate(10deg); }
.floating-image5 { top: 45%; left: 6%; transform: rotate(7deg); }
.floating-image6 { top: 50%; right: 5%; transform: rotate(-25deg); }
.floating-image7 { bottom: 35%; left: 4%; transform: rotate(-15deg); }
.floating-image8 { bottom: 20%; right: 4%; transform: rotate(20deg); }
.floating-image9 { bottom: 15%; left: 20%; transform: rotate(12deg); }
.floating-image10 { bottom: 5%; right: 15%; transform: rotate(-20deg); }

.floating-image1:hover,
.floating-image2:hover,
.floating-image3:hover,
.floating-image4:hover,
.floating-image5:hover,
.floating-image6:hover,
.floating-image7:hover,
.floating-image8:hover,
.floating-image9:hover,
.floating-image10:hover {
  transform: scale(1.1) !important;
  opacity: 1;
  box-shadow: 0 0 25px rgba(255, 0, 128, 0.8);
}

@media (max-width: 768px) {
  .floating-image1,
  .floating-image2,
  .floating-image3,
  .floating-image4,
  .floating-image5,
  .floating-image6,
  .floating-image7,
  .floating-image8,
  .floating-image9,
  .floating-image10 {
    width: clamp(30px, 6vw, 50px);
    height: clamp(30px, 6vw, 50px);
    border-width: 1px;
  }
}

@media (max-width: 480px) {
  .floating-image1,
  .floating-image2,
  .floating-image3,
  .floating-image4,
  .floating-image5,
  .floating-image6,
  .floating-image7,
  .floating-image8,
  .floating-image9,
  .floating-image10 {
    width: clamp(20px, 4vw, 35px);
    height: clamp(20px, 4vw, 35px);
    border-width: 1px;
    opacity: 0.5;
  }

  .floating-image1 { top: 5%; left: 3%; }
  .floating-image2 { top: 8%; right: 3%; }
  .floating-image3 { top: 20%; left: 1%; }
  .floating-image4 { top: 25%; right: 2%; }
  .floating-image5 { top: 40%; left: 3%; }
  .floating-image6 { top: 45%; right: 2%; }
  .floating-image7 { bottom: 30%; left: 2%; }
  .floating-image8 { bottom: 15%; right: 2%; }
  .floating-image9 { display: none; }
  .floating-image10 { display: none; }
}
 

/* ============================================================================
   RESPONSIVE DESIGN (Mobile First)
   ============================================================================ */

  @media (max-width: 768px) {
        .logo-container { flex-direction: row; align-items: center; justify-content: center; gap: 1rem; }
        .logo-text-group { flex-direction: row; align-items: flex-start; }
        .logo-text { font-size: 1.8rem !important; line-height: 1; }
        .icon-wrapper { width: 40px; height: 40px; margin-bottom: 0; margin-right: 0; flex-shrink: 0; }
        .hero { padding: 2rem 1rem; }
        .demo_preis { margin: 2rem 1rem; gap: 2.5rem; }
        .demo-section, .preis-section { padding: 1.5rem; margin: 0 0.5rem; }
        .demo-buttons { justify-content: center; gap: 1rem; margin-top: 1.5rem; }
        .demo-buttons a { flex: 1; max-width: 160px; padding: 1rem 0.8rem; }
        .features { padding: 2rem 1rem; gap: 1.5rem; margin: 1rem 0; }
        .feature-card { padding: 1.5rem; margin: 0 0.5rem; }
        .floating-image1, .floating-image2, .floating-image3, .floating-image4,
        .floating-image5, .floating-image6, .floating-image7, .floating-image8,
        .floating-image9, .floating-image10 { width: clamp(60px, 18vw, 90px); height: clamp(60px, 18vw, 90px); opacity: 1; border-width: 2px; }
        .floating-image1 { top: 14%; left: 10%; transform: rotate(15deg); }
        .floating-image2 { top: 14%; right: 10%; transform: rotate(-20deg); }
        .floating-image3 { top: 31%; left: 2%; transform: rotate(-10deg); }
        .floating-image4 { top: 32%; right: 5%; transform: rotate(10deg); }
        .floating-image5 { top: 48%; left: 5%; transform: rotate(7deg); }
        .floating-image6 { top: 45%; right: 6%; transform: rotate(-27deg); }
        .floating-image7 { bottom: 38%; left: 15%; transform: rotate(-15deg); }
        .floating-image8 { bottom: 13%; right: 10%; transform: rotate(20deg); }
        .floating-image9 { bottom: 20%; left: 20%; transform: rotate(12deg); }
        .floating-image10 { bottom: 2%; right: 30%; transform: rotate(-20deg); }
      }

      @media (max-width: 480px) {
        header { padding: 2rem 1rem; }
        .hero { padding: 2rem 1rem; }
        .hero h1 { margin-bottom: 1.5rem; }
        .hero p { margin-top: 1.5rem; }
        .demo_preis { margin: 2rem 1rem; gap: 3rem; }
        .demo-buttons { flex-direction: column; gap: 1rem; align-items: center; margin-top: 2rem; }
        .demo-buttons a { width: 70%; max-width: 220px; min-width: unset; padding: 1rem; text-align: center; }
        .preis-zeile { gap: 0.8rem; padding: 1rem 0; }
        .preis-section, .demo-section { margin: 0 0rem; padding: 2rem 1.5rem; }
        .floating-image1, .floating-image2, .floating-image3, .floating-image4,
        .floating-image5, .floating-image6, .floating-image7, .floating-image8,
        .floating-image9, .floating-image10 { width: clamp(55px, 16vw, 80px); height: clamp(55px, 16vw, 80px); opacity: 1; }
        .floating-image1 { top: 15%; left: 10%; transform: rotate(15deg); }
        .floating-image2 { top: 18%; right: 10%; transform: rotate(-20deg); }
        .floating-image3 { top: 23%; left: 2%; transform: rotate(-10deg); }
        .floating-image4 { top: 32%; right: 5%; transform: rotate(10deg); }
        .floating-image5 { top: 43%; left: 5%; transform: rotate(7deg); }
        .floating-image6 { top: 54%; right: 6%; transform: rotate(-27deg); }
        .floating-image7 { bottom: 40%; left: 5%; transform: rotate(-15deg); }
        .floating-image8 { bottom: 13%; right: 5%; transform: rotate(20deg); }
        .floating-image9 { bottom: 12%; left: 15%; transform: rotate(12deg); }
        .floating-image10 { bottom: 2%; right: 15%; transform: rotate(-20deg); }
        
      }

      @media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
        .demo_preis { flex-direction: row; justify-content: center; align-items: flex-start; gap: 2rem; margin: 2rem 1rem; }
        .floating-image1 { top: 8%; left: 5%; transform: rotate(15deg); }
        .floating-image2 { top: 10%; right: 7%; transform: rotate(-20deg); }
        .floating-image5 { top: 45%; left: 5%; transform: rotate(7deg); }
        .floating-image6 { top: 48%; right: 8%; transform: rotate(-20deg); }
        .floating-image7 { bottom: 22%; left: 8%; transform: rotate(-15deg); }
        .floating-image8 { bottom: 15%; right: 3%; transform: rotate(20deg); }
        .floating-image9 { bottom: 9%; left: 20%; transform: rotate(12deg); }
        .floating-image10 { bottom: 3%; right: 20%; transform: rotate(-20deg); }
        .floating-image3, .floating-image4 { display: none; }
        .demo-section, .preis-section { max-width: 400px; }
        .features { grid-template-columns: repeat(2, 1fr); }
      }

      @media (min-width: 1025px) {
        .demo_preis { flex-direction: row; justify-content: center; align-items: flex-start; gap: 7rem; margin: 3rem auto; max-width: 1200px; padding: 0 7rem; }
        .demo-section, .preis-section { max-width: 350px; }
        .features { grid-template-columns: repeat(4, 1fr); }
        .icon-wrapper { width: 70px; height: 70px; margin-right: 1rem; margin-bottom: 0; }
        .logo-container { flex-direction: row; align-items: center; }
        .features .feature-card:last-child h3 { margin-top: 1.5rem; }
      }

      /* === Optimierung für große Bildschirme (z. B. 2K, 4K) === */
@media (min-width: 1700px) {
  /* Breitere Layout-Bereiche */
  .features,
  .demo_preis,
  .bild_container {
    max-width: 2500px;
  }

  /* Etwas größere Schrift für bessere Lesbarkeit */
  body {
    font-size: clamp(1rem, 0.95vw, 1.3rem);
  }

  /* Hero-Bereich etwas kräftiger und luftiger */
  .hero h1 {
    font-size: clamp(1.8rem, 2.2vw, 3rem);
    text-shadow: 0 0 15px #00ffff, 0 0 25px #ff0080;
    margin-bottom: 1.5rem;
  }

  .hero p {
    max-width: 900px;
    font-size: clamp(1.1rem, 1.2vw, 1.5rem);
  }

  /* Feature-Karten mit mehr Raum und stärkerem Glow */
  .feature-card {
    padding: 2rem;
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6);
  }

  .feature-card h3 {
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  }

  .feature-card p {
    font-size: clamp(1rem, 1.1vw, 1.3rem);
  }

  /* Buttons und Sterne größer, leuchtender */
  .star-button {
    width: clamp(200px, 25vw, 280px);
    height: clamp(200px, 25vw, 280px);
  }

  .star-button .button-text {
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    text-shadow: 0 0 8px rgba(255,255,255,0.8);
  }

  /* Bilder im Hintergrund leicht vergrößern für mehr Dynamik */
  .floating-image1, .floating-image2, .floating-image3,
  .floating-image4, .floating-image5, .floating-image6,
  .floating-image7, .floating-image8, .floating-image9,
  .floating-image10 {
    width: clamp(75px, 9vw, 150px);
    height: clamp(75px, 9vw, 150px);
    box-shadow: 0 0 35px rgba(255, 0, 128, 0.9);
  }

  /* Footer zentrierter und mit etwas mehr Luft */
  footer {
    margin-top: 3rem;
    font-size: clamp(1rem, 0.9vw, 1.2rem);
  }

        .floating-image1 { top: 5%; left: 12%; transform: rotate(15deg); }
      .floating-image2 { top: 7%; right: 9%; transform: rotate(-20deg); }
      .floating-image3 { top: 18%; left: 2%; transform: rotate(-10deg); }
      .floating-image4 { top: 25%; right: 1%; transform: rotate(10deg); }
      .floating-image5 { top: 47%; left: 5%; transform: rotate(7deg); }
      .floating-image6 { top: 52%; right: 10%; transform: rotate(-18deg); }
      .floating-image7 { bottom: 15%; left: 4%; transform: rotate(-15deg); }
      .floating-image8 { bottom: 8%; right: 15%; transform: rotate(20deg); }
      .floating-image9 { bottom: 3%; left: 18%; transform: rotate(12deg); }
      .floating-image10 { display: none; }


   .demo-section {
    max-width: 720px; /* vorher 600px – jetzt breiter */
    margin-left: -80px; /* leicht nach links verschoben */
    margin-top: 1.5rem; /* etwas nach unten gerückt */
    padding: 2.8rem 2rem;
    /*border: 2px solid #8000ff;
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6), 0 0 60px rgba(0, 255, 255, 0.3);*/
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 0, 51, 0.7));
    transform: scale(1.05);
    transition: all 0.4s ease;
  }

  .demo-section:hover {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.8), 0 0 90px rgba(0, 255, 255, 0.4);
  }

  .demo-section h2 {
    font-size: clamp(1.6rem, 2vw, 2rem);
    text-shadow: 0 0 15px #ff0080, 0 0 25px #00ffff;
    margin-bottom: 2rem;
  }

  /* === MemoMatch-Button angepasst === */
  .demo-buttons {
    justify-content: center;
  }

  .demo-buttons a {
    font-size: clamp(1rem, 1vw, 1.3rem);
    padding: 1.5rem 2.5rem;
    border-radius: 14px;
    max-width: 320px;
    background: linear-gradient(135deg, #ff0080 0%, #00ffff 100%);
    color: #000;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 35px rgba(255, 0, 128, 0.8), 0 0 50px rgba(0, 255, 255, 0.5);
    transition: all 0.4s ease-in-out;
  }

  .demo-buttons a:hover {
    transform: scale(1.08);
    box-shadow: 0 0 55px rgba(255, 0, 128, 1), 0 0 100px rgba(0, 255, 255, 0.6);
    letter-spacing: 1px;
  }

    footer {
    margin-top: clamp(1rem, 2vh, 2rem);
  }
}

/* ✅ Anpassung für ~1182px breite Browserfenster */
@media (min-width: 1170px) and (max-width: 1190px)
       and (max-height: 700px) {

  .floating-image1 { top: 3%; left: 3%; transform: rotate(10deg); }
  .floating-image2 { top: 5%; right: 4%; transform: rotate(-15deg); }
  .floating-image3 { top: 18%; left: 12%; }
  .floating-image4 { top: 20%; right: 13%; }
  .floating-image5 { top: 51%; left: 8%; }
  .floating-image6 { top: 54%; right: 10%; }
  .floating-image7 { bottom: 9%; left: 8%; }
  .floating-image8 { display: none; }
  .floating-image9 { bottom: 1%; left: 30%; }
  .floating-image10 { bottom: 2%; right: 28%; }
}

@media (min-width: 768px)
  and (max-width: 1366px)
  and (max-height: 1000px)
  and (orientation: landscape) {
  .floating-image1 { top: 3%; left: 3%; transform: rotate(10deg); }
  .floating-image2 { top: 5%; right: 4%; transform: rotate(-15deg); }
  .floating-image3 { top: 18%; left: 12%; }
  .floating-image4 { top: 20%; right: 13%; }
  .floating-image5 { top: 51%; left: 8%; }
  .floating-image6 { top: 54%; right: 10%; }
  .floating-image7 { bottom: 9%; left: 8%; }
  .floating-image8 { display: none; }
  .floating-image9 { bottom: 1%; left: 30%; }
  .floating-image10 { bottom: 2%; right: 28%; }
}

@media (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {
        .floating-image1 { top: 15%; left: 10%; transform: rotate(15deg); }
        .floating-image2 { top: 16%; right: 10%; transform: rotate(-20deg); }
        .floating-image3 { top: 31%; left: 2%; transform: rotate(-10deg); }
        .floating-image4 { top: 33%; right: 5%; transform: rotate(10deg); }
        .floating-image5 { top: 52%; left: 15%; transform: rotate(7deg); }
        .floating-image6 { top: 49%; right: 6%; transform: rotate(-27deg); }
        .floating-image7 { display: none; }
        .floating-image8 { bottom: 15%; right: 7%; transform: rotate(20deg); }
        .floating-image9 { bottom: 20%; left: 25%; transform: rotate(12deg); }
        .floating-image10 { bottom: 2%; right: 30%; transform: rotate(-20deg); }
}


/* ============================================
   NEUE BREAKPOINTS FÜR PRESENT-APPS
   ============================================ */

/* 
   BREAKPOINT 1: Phablets & Große Handys (481px – 599px)
   Geräte: iPhone 11 Pro Max, Samsung Galaxy S21 Ultra, etc.
*/
@media (min-width: 481px) and (max-width: 599px) {
  /* Hero-Bereich */
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 1.15rem;
    max-width: 100%;
  }

  /* Demo und Preis nebeneinander für mehr Platz */
  .demo_preis {
    margin: 2rem 1rem;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .demo-section, .preis-section {
    max-width: 90%;
    padding: 1.5rem;
    margin: 0;
  }

  /* Buttons responsiver */
  .demo-buttons {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .demo-buttons a {
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    padding: 0.9rem 0.7rem;
    font-size: 0.75rem;
  }

  /* Floating Images – leicht vergrößert */
  .floating-image1, .floating-image2, .floating-image3, .floating-image4,
  .floating-image5, .floating-image6, .floating-image7, .floating-image8,
  .floating-image9, .floating-image10 {
    width: clamp(65px, 15vw, 85px);
    height: clamp(65px, 15vw, 85px);
    border-width: 2px;
  }

  .floating-image1 { top: 12%; left: 8%; transform: rotate(15deg); }
  .floating-image2 { top: 12%; right: 8%; transform: rotate(-20deg); }
  .floating-image3 { top: 28%; left: 2%; transform: rotate(-10deg); }
  .floating-image4 { top: 30%; right: 3%; transform: rotate(10deg); }
  .floating-image5 { top: 46%; left: 5%; transform: rotate(7deg); }
  .floating-image6 { top: 48%; right: 5%; transform: rotate(-25deg); }
  .floating-image7 { bottom: 35%; left: 8%; transform: rotate(-15deg); }
  .floating-image8 { bottom: 12%; right: 6%; transform: rotate(20deg); }
  .floating-image9 { bottom: 15%; left: 20%; transform: rotate(12deg); }
  .floating-image10 { bottom: 2%; right: 20%; transform: rotate(-20deg); }

  /* Feature Cards etwas kompakter */
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1.5rem 1rem;
  }

  .feature-card {
    padding: 1.2rem;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  /* Star Button */
  .star-button {
    width: clamp(130px, 35vw, 170px);
    height: clamp(130px, 35vw, 170px);
  }

  .star-button .button-text {
    font-size: 1rem;
  }

  /* Preis-Zeile besser ausnutzen */
  .preis-zeile {
    gap: 0.8rem;
    padding: 0.8rem 0;
  }
}


/* 
   BREAKPOINT 2: Kleine bis mittlere Desktops (1024px – 1199px)
   Geräte: ältere Laptops, 1024px Netbooks, Tablets im Landscape
   Verhindert, dass zu große Abstände entstehen
*/
@media (min-width: 1024px) and (max-width: 1199px) {
  /* Allgemeines */
  .demo_preis {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    padding: 0 1rem;
  }

  .demo-section, .preis-section {
    max-width: 320px;
  }

  /* Feature Cards in 3er Spalten */
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    max-width: 1000px;
    padding: 2rem 1rem;
  }

  .feature-card {
    padding: 1.3rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  /* Star Button */
  .star-button {
    width: clamp(160px, 20vw, 200px);
    height: clamp(160px, 20vw, 200px);
  }

  .star-button .button-text {
    font-size: 1.1rem;
  }

  /* Floating Images angepasst */
  .floating-image1 { top: 5%; left: 10%; transform: rotate(15deg); }
  .floating-image2 { top: 8%; right: 10%; transform: rotate(-20deg); }
  .floating-image3 { top: 20%; left: 2%; transform: rotate(-10deg); }
  .floating-image4 { top: 24%; right: 2%; transform: rotate(10deg); }
  .floating-image5 { top: 46%; left: 5%; transform: rotate(7deg); }
  .floating-image6 { top: 49%; right: 6%; transform: rotate(-25deg); }
  .floating-image7 { bottom: 25%; left: 5%; transform: rotate(-15deg); }
  .floating-image8 { bottom: 18%; right: 4%; transform: rotate(20deg); }
  .floating-image9 { bottom: 8%; left: 22%; transform: rotate(12deg); }
  .floating-image10 { bottom: 2%; right: 25%; transform: rotate(-20deg); }

  /* Header etwas kompakter */
  .logo-text {
    font-size: 2.8rem;
  }

  .slogan {
    font-size: 1.1rem;
  }

  /* Demo und Preis Buttons */
  .demo-buttons a {
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
    max-width: 180px;
  }

  .demo-buttons a:hover {
    transform: scale(1.06);
  }
}


/* 
   BREAKPOINT 3: Große Tablets im Portrait (1025px – 1366px, Portrait)
   Geräte: iPad Pro 12.9" im Portrait, große Tablets
   Problem: Diese haben Desktop-Breite aber sind noch Tablets
*/
@media (min-width: 1025px) 
  and (max-width: 1366px) 
  and (orientation: portrait) {
  
  .demo_preis {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
  }

  .demo-section, .preis-section {
    max-width: 500px;
    width: 90%;
  }

  .button-container {
    margin-top: 2rem;
  }

  .star-button {
    width: clamp(150px, 25vw, 200px);
    height: clamp(150px, 25vw, 200px);
  }

  .feature-card {
    padding: 1.4rem;
  }

  /* Features in 2 Spalten statt 4 */
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .floating-image1 { top: 8%; left: 8%; transform: rotate(15deg); }
  .floating-image2 { top: 10%; right: 8%; transform: rotate(-20deg); }
  .floating-image3 { top: 22%; left: 2%; transform: rotate(-10deg); }
  .floating-image4 { top: 26%; right: 2%; transform: rotate(10deg); }
  .floating-image5 { top: 48%; left: 5%; transform: rotate(7deg); }
  .floating-image6 { top: 51%; right: 5%; transform: rotate(-25deg); }
  .floating-image7 { bottom: 30%; left: 5%; transform: rotate(-15deg); }
  .floating-image8 { bottom: 18%; right: 5%; transform: rotate(20deg); }
  .floating-image9 { bottom: 8%; left: 25%; transform: rotate(12deg); }
  .floating-image10 { display: none; }
}


/* 
   BREAKPOINT 4: Kleine bis mittlere Desktops optimiert (1200px – 1699px)
   Brücke zwischen Standard-Desktop und Ultra-Wide
   Verhindert Sprung zwischen 1025px+ und 1700px+
*/
@media (min-width: 1200px) and (max-width: 1699px) {
  /* Etwas größere Abstände, aber noch nicht so groß wie 1700px+ */
  .demo_preis {
    gap: 2.5rem;
    max-width: 1100px;
  }

  .demo-section, .preis-section {
    max-width: 380px;
  }

  .features {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
  }

  .feature-card {
    padding: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  /* Demo Buttons etwas größer */
  .demo-buttons a {
    font-size: 0.95rem;
    padding: 1.2rem 2rem;
    max-width: 220px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1.25rem;
    max-width: 800px;
  }

  /* Star Button */
  .star-button {
    width: clamp(170px, 22vw, 230px);
    height: clamp(170px, 22vw, 230px);
  }

  .star-button .button-text {
    font-size: 1.2rem;
  }

  /* Floating Images */
  .floating-image1 { top: 5%; left: 12%; transform: rotate(15deg); }
  .floating-image2 { top: 7%; right: 10%; transform: rotate(-20deg); }
  .floating-image5 { top: 47%; left: 6%; transform: rotate(7deg); }
  .floating-image6 { top: 50%; right: 8%; transform: rotate(-20deg); }
  .floating-image7 { bottom: 18%; left: 5%; transform: rotate(-15deg); }
  .floating-image8 { bottom: 10%; right: 12%; transform: rotate(20deg); }
  .floating-image9 { bottom: 4%; left: 20%; transform: rotate(12deg); }
}

/* Tablets (iPad & Android Tablets) - Floating Images ausblenden */
/* Diese Media Query spricht NUR Tablets an, nicht Smartphones */
@media (hover: none) and (pointer: coarse) and (min-width: 600px) {
  .floating-image1, .floating-image2, .floating-image3, .floating-image4,
  .floating-image5, .floating-image6, .floating-image7, .floating-image8,
  .floating-image9, .floating-image10 {
    display: none !important;
  }
}

/* ============================================================================
   CONTACT MODAL STYLES
   ============================================================================ */

.contact-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  justify-content: center;
  align-items: center;
}

.contact-modal.show {
  display: flex;
}

.contact-content {
  background: linear-gradient(135deg, #0a0a0a, #1a0033, #000511);
  border: 2px solid #8000ff;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #ff0080;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
}

.close-btn:hover {
  color: #00ffff;
}

.contact-form h2 {
  color: #ff0080;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  text-shadow: 0 0 10px #ff0080;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #00ffff;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #8000ff;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #00ffff;
  font-family: "Courier New", monospace;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff0080;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.4);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.form-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: "Courier New", monospace;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.send-btn {
  background: linear-gradient(135deg, #ff0080, #00ffff);
  color: black;
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
}

.send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.cancel-btn {
  background: rgba(128, 0, 255, 0.2);
  color: #00ffff;
  border: 2px solid #8000ff;
}

.cancel-btn:hover {
  background: rgba(128, 0, 255, 0.4);
}

/* ============================================================================
   BESTELLEN PAGE - SEITEN-SPEZIFISCHE ANPASSUNGEN
   ============================================================================ */

.bestellen-page main {
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid #ff0080;
  padding: 2.5rem;
}

.bestellen-page main h1 {
  color: #00ffff;
  font-size: 2rem;

  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px #00ffff;
}

.bestellen-page .icon-wrapper {
  width: 50px;
  height: 50px;
  margin-bottom: 0.75rem;
}

.bestellen-page .logo-text {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.bestellen-page .logo-container {
  flex-direction: column;
}

/* Main Content */
.bestellen-page main {
  max-width: 700px;
  margin: 2rem auto;
  background: rgba(0, 0, 0, 0.6);
  padding: clamp(1rem, 4vw, 2rem);
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(128, 0, 255, 0.4);
  border: 2px solid #8000ff;
  margin-left: clamp(0.5rem, 2vw, auto);
  margin-right: clamp(0.5rem, 2vw, auto);
}

/* Headings */
.bestellen-page h1,
.bestellen-page h2 {
  text-align: center;
  text-shadow: 0 0 10px #ff0080;
}

.bestellen-page h1 {
  color: #00ffff;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.bestellen-page h2 {
  color: #ff0080;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
}

.bestellen-page h3 {
  color: #00ffff;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.bestellen-page h4 {
  color: #00ffff;
  margin-bottom: 1rem;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  text-shadow: 0 0 10px #ff0080;
}

.bestellen-page .kopf h4 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Paragraphs & Labels */
.bestellen-page p {
  color: #e0e0e0;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.4;
}

.bestellen-page label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  color: #ffffffcc;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Form Elements */
.bestellen-page input[type="text"],
.bestellen-page input[type="email"],
.bestellen-page textarea {
  width: 100%;
  padding: clamp(0.5rem, 2vw, 0.7rem);
  border-radius: 5px;
  border: 1px solid #00ffff;
  background: #1a0033;
  color: #00ffff;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.bestellen-page input[type="text"]:focus,
.bestellen-page input[type="email"]:focus,
.bestellen-page textarea:focus {
  outline: none;
  border-color: #ff0080;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

.bestellen-page textarea {
  min-height: 80px;
  resize: vertical;
}

/* Preis Container */
.bestellen-page .preis-container {
  background: rgba(26, 0, 51, 0.3);
  border: 2px solid #8000ff;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.bestellen-page .preis-info {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffff;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.bestellen-page .preis-info2 {
  margin-top: 1.5rem;
  color: lightgreen;
}

.bestellen-page .preis-info p {
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 2.5vw, 1.20rem);
}

.bestellen-page .preis-info strong {
  color: #ff0080;
}

/* Buttons */
.bestellen-page button {
  padding: clamp(0.8rem, 3vw, 1rem);
  background: linear-gradient(135deg, #ff0080, #00ffff);
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bestellen-page button:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.bestellen-page button:disabled {
  background: #333;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Form Groups & Layout */
.bestellen-page .form-group {
  margin-bottom: 1rem;
}

.bestellen-page .zwei-spalten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bestellen-page .button-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.bestellen-page .bestell-button {
  flex: 3;
}

.bestellen-page .bestell-button2 {
  flex: 3;
  background: white !important;
  border: 2px solid red;
  color: red !important;
  font-size: large;
}

.bestellen-page .zurueck-button {
  flex: 0 0 auto;
  align-self: center;
  background: linear-gradient(25deg, darkgrey, lightgray);
  margin-top: 1rem;
 }

.bestellen-page .zurueck-button:hover {
  background: linear-gradient(25deg, #777, #444);
}

.emoji-large {
  font-size: 2em; /* Größe anpassen: 1.2em, 2em, etc. */
}

/* Info Box */
.bestellen-page .info-box {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffff;
  border-radius: 10px;
  padding: 1.2rem;
  margin: 1.5rem 0;
}

.bestellen-page .info-box h4 {
  color: #00ffff;
  margin-bottom: 0.8rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
  text-align: center;
}

.bestellen-page .info-box ul {
  list-style: none;
  padding-left: 0;
}

.bestellen-page .info-box li {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  font-size: clamp(0.85rem, 2.3vw, 0.95rem);
}

.bestellen-page .info-box li::before {
  content: "✓";
  color: #00ffff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .bestellen-page .logo-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .bestellen-page .logo-text-group {
    flex-direction: row;
    align-items: flex-start;
  }

  .bestellen-page .logo-text {
    font-size: 1.8rem !important;
    line-height: 1;
  }

  .bestellen-page .icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    margin-right: 0;
    flex-shrink: 0;
  }

  .bestellen-page .zwei-spalten {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .bestellen-page .button-container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .bestellen-page main {
    margin: 1rem 0.5rem;
    padding: 1rem;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .bestellen-page .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    margin-bottom: 0;
  }

  .bestellen-page .logo-container {
    flex-direction: row;
    align-items: center;
  }
}

