/* style_aluminium_ui3.css */

@keyframes config-button-pulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0, 58, 93, 0.4), 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) scale(1.02);
  }
}

@keyframes config-button-pulse-close {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
  }
}

body {
    margin: 0;
    font-family: "Noto Sans Display";
    background: #f9f9f9;
    padding-bottom: env(safe-area-inset-bottom); /* iPhone Safe Area Support */
}

/* Footer generell ohne Margins */
.ausstattung-footer {
  margin: 0 !important; /* Keine Margins für Footer */
}

:root {
  /* Höhe der unteren Leiste – einheitlich für alle UIs */
  --footer-h: 80px;
  --footer-h-small: 70px; /* Für sehr kleine Geräte */
}

/* Sicherstellen, dass alle Textelemente Umlaute korrekt anzeigen */
* {
  font-family: "Noto Sans Display";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container-ui3 {
  max-width: 420px;
  margin: auto;
  background: white;
  min-height: 100vh;
  max-height: 100vh; /* Feste Höhe für Desktop-Scrolling */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden; /* Container selbst scrollt nicht */
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  /* Konfigurieren-Button Animation (Mobile) */
  .mobile-config-button {
    animation: config-button-pulse 1s ease-in-out infinite !important;
    -webkit-animation: config-button-pulse 1s ease-in-out infinite !important;
  }

  body {
    font-family: "Noto Sans Display";
    overflow: hidden;
  }
  
  .container-ui3 {
    max-width: 100%;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Container selbst scrollt nicht, nur der Content */
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }
  
  header {
    padding: 15px 10px 10px;
  }
  
  .logo {
    width: 80px;
  }
  
  h1 {
    font-size: 18px;
  }
  
  .ausstattung-content {
    padding: 8px;
    padding-bottom: calc(var(--footer-h) + 12px) !important; /* Platz für Footer */
    overflow-y: auto !important; /* Sicherstellen, dass Scrollen aktiviert ist */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling auf iOS */
    min-height: 0; /* Wichtig für Flexbox-Scrolling */
    max-height: calc(100vh - var(--footer-h) - 60px); /* Maximale Höhe für Scrollen */
  }
  
  .ausstattung-footer {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    min-height: 80px !important;
    height: calc(80px + env(safe-area-inset-bottom)) !important;
    padding: 12px 15px !important;
    padding-bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
    background: #ffffff !important;
    border-top: 1px solid #ddd !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
    box-sizing: border-box !important;
  }
  
  .ausstattung-footer button {
    width: 100% !important;
    max-width: 100% !important;
    height: 56px !important;
    padding: 14px 20px !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 14px !important; /* Mehr abgerundet */
    border: none !important; /* Kein Border */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important; /* Subtiler Gradient */
    color: #003A5D !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Smooth Animation */
    box-shadow: 0 2px 8px rgba(0, 58, 93, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08) !important; /* Weichere Schatten */
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.3px !important; /* Bessere Lesbarkeit */
  }
  
  /* Mobile Back to 3D Button - versteckt */
  .mobile-back-3d-ui3 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  body {
    font-family: "Noto Sans Display";
    overflow: hidden;
  }
  
  .container-ui3 {
    min-height: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Container selbst scrollt nicht, nur der Content */
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }
  
  header {
    padding: 10px 5px 5px;
  }
  
  .logo {
    width: 60px;
  }
  
  h1 {
    font-size: 16px;
  }
  
  .ausstattung-content {
    padding: 5px;
    padding-bottom: calc(var(--footer-h) + 10px) !important; /* Platz für Footer */
    overflow-y: auto !important; /* Sicherstellen, dass Scrollen aktiviert ist */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling auf iOS */
    min-height: 0; /* Wichtig für Flexbox-Scrolling */
    max-height: calc(100vh - var(--footer-h) - 50px); /* Maximale Höhe für Scrollen */
  }
  
  .ausstattung-footer {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    min-height: 70px !important;
    height: calc(70px + env(safe-area-inset-bottom)) !important;
    padding: 10px 12px !important;
    padding-bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
    background: #ffffff !important;
    border-top: 1px solid #ddd !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
    box-sizing: border-box !important;
  }
  
  .ausstattung-footer button {
    width: 100% !important;
    max-width: 100% !important;
    height: 50px !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 12px !important; /* Mehr abgerundet */
    border: none !important; /* Kein Border */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important; /* Subtiler Gradient */
    color: #003A5D !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Smooth Animation */
    box-shadow: 0 2px 6px rgba(0, 58, 93, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08) !important; /* Weichere Schatten */
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.2px !important; /* Bessere Lesbarkeit */
  }
  
  .ausstattung-footer button:hover {
    background: linear-gradient(135deg, #003A5D 0%, #004d7a 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 58, 93, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  }
  
  .ausstattung-footer button:active {
    background: linear-gradient(135deg, #002a4a 0%, #003A5D 100%) !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 4px rgba(0, 58, 93, 0.2) !important;
  }
  
  .mobile-back-3d-ui3 {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-back-3d-ui3 {
    display: none !important;
  }
  
  /* Desktop: Sicherstellen, dass Scrollen funktioniert */
  .container-ui3 {
    max-height: 100vh;
    height: 100vh;
  }
  
  .ausstattung-content {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    flex: 1;
    min-height: 0;
    max-height: none; /* Entferne max-height für Desktop, flex: 1 reicht */
  }
}

/* Close Button fuer UI3 - nur auf Mobile sichtbar */
.ui3-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dc2626;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none; /* Standardmäßig versteckt */
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* Mobile: Close Button als "Zurück zum Konfigurator" */
@media (max-width: 768px) {
  .ui3-close {
    width: auto; /* Automatische Breite für Text */
    min-width: 80px; /* Mindestbreite für Text */
    height: 36px;
    border-radius: 18px; /* Abgerundete Ecken für Text-Button */
    font-size: 12px; /* Kleinere Schrift für Text */
    padding: 0 12px; /* Horizontales Padding für Text */
    white-space: nowrap; /* Kein Textumbruch */
    animation: config-button-pulse-close 1s ease-in-out infinite !important;
    -webkit-animation: config-button-pulse-close 1s ease-in-out infinite !important;
  }
  
  .ui3-close::before {
    content: "Zum Konfigurator"; /* Pfeil und Text */
    font-size: 10px;
    font-weight: 500;
  }
  
  /* X-Symbol verstecken */
  .ui3-close::after {
    display: none !important;
  }
  
  /* Original-Text verstecken */
  .ui3-close {
    font-size: 0; /* Original-Text unsichtbar machen */
  }
}

.ui3-close:hover {
  background: #b91c1c;
  animation: none !important;
}

/* Close Button nur auf Mobile anzeigen */
@media (max-width: 768px) {
  .ui3-close {
    display: flex;
  }
}

header {
  text-align: center;
  padding: 20px 10px 10px;
  border-bottom: 1px solid #ddd;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  background: white;
}

.logo {
  width: 100px;
  margin-bottom: 5px;
}

h1 {
  font-size: 20px;
  color: #003a5d;
  margin: 0;
}

/* Ausstattung Content */
.ausstattung-content {
  flex: 1;
  padding: 20px;
  padding-bottom: calc(var(--footer-h) + 20px) !important; /* Platz für Footer */
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling auf iOS */
  min-height: 0; /* Wichtig für Flexbox-Scrolling */
}

.ausstattung-section {
  margin-bottom: 20px;
}

.ausstattung-button {
  width: 100%;
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  text-align: left;
  flex-wrap: wrap;
}

.ausstattung-button:hover:not(.disabled) {
  border-color: #003a5d;
  box-shadow: 0 2px 8px rgba(0, 58, 93, 0.1);
}

.ausstattung-button.active {
  border-color: #003a5d;
  background: #f0f8ff;
  box-shadow: 0 2px 8px rgba(0, 58, 93, 0.15);
}

.ausstattung-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f9f9f9;
  pointer-events: none;
}

.ausstattung-button img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.ausstattung-button span {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}

.ausstattung-button.disabled span {
  color: #9ca3af;
}

.coming-soon {
  width: 100%;
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
  margin-top: 5px;
  padding-left: 55px; /* Align with text content */
}

/* Sub-Buttons für Beleuchtung und Aufdachmarkise */
.sub-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  width: 100%;
}

.sub-buttons-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sub-button {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sub-button:hover {
  border-color: #003a5d;
  background: #f0f8ff;
  box-shadow: 0 2px 6px rgba(0, 58, 93, 0.1);
  transform: translateY(-1px);
}

.sub-button.active {
  border-color: #003a5d;
  background: #003a5d;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 58, 93, 0.2);
}

.sub-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 58, 93, 0.15);
}

/* Footer */
.ausstattung-footer {
  padding: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  /* Keine Margins - Footer funktioniert ohne */
  position: sticky;
  bottom: 0;
  background: #fff;
  z-index: 10;
}

.ausstattung-footer button {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Desktop Footer Styles */
@media (min-width: 769px) {
.ausstattung-footer button {
  margin: 0 10px;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 14px; /* Mehr abgerundet - professioneller */
  font-weight: 600; /* Etwas leichter für moderneres Design */
  cursor: pointer;
  border: none; /* Kein Border für moderneres Design */
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); /* Subtiler Gradient */
  color: #003A5D;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth Animation */
  box-shadow: 0 2px 8px rgba(0, 58, 93, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08); /* Weichere Schatten */
  flex: 1;
  max-width: 200px;
  letter-spacing: 0.3px; /* Bessere Lesbarkeit */
}

.ausstattung-footer button:hover {
  background: linear-gradient(135deg, #003A5D 0%, #004d7a 100%); /* Gradient beim Hover */
  color: white;
  transform: translateY(-2px); /* Leichtes Anheben */
  box-shadow: 0 6px 16px rgba(0, 58, 93, 0.25), 0 2px 6px rgba(0, 0, 0, 0.1); /* Tiefere Schatten */
}

.ausstattung-footer button:active {
  background: linear-gradient(135deg, #002a4a 0%, #003A5D 100%);
  transform: translateY(0); /* Zurück nach unten beim Klicken */
  box-shadow: 0 2px 6px rgba(0, 58, 93, 0.2);
}
}

/* Mobile Footer Button Hover/Active States */
@media (max-width: 768px) {
  .ausstattung-footer button:hover {
    background: linear-gradient(135deg, #003A5D 0%, #004d7a 100%) !important; /* Gradient beim Hover */
    color: white !important;
    transform: translateY(-2px) !important; /* Leichtes Anheben */
    box-shadow: 0 6px 16px rgba(0, 58, 93, 0.25), 0 2px 6px rgba(0, 0, 0, 0.1) !important; /* Tiefere Schatten */
  }
  
  .ausstattung-footer button:active {
    background: linear-gradient(135deg, #002a4a 0%, #003A5D 100%) !important;
    transform: translateY(0) !important; /* Zurück nach unten beim Klicken */
    box-shadow: 0 2px 6px rgba(0, 58, 93, 0.2) !important;
  }
}

/* Scrollbar Styling */
.ausstattung-content::-webkit-scrollbar {
  width: 6px;
}

.ausstattung-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.ausstattung-content::-webkit-scrollbar-track {
  background: #f9f9f9;
}

/* Mobile Back to 3D Button */
.mobile-back-3d-ui3 {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003A5D, #dc2626);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.mobile-back-3d-ui3:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Stoff Markise Section */
.stoff-markise-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.stoff-markise-title {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 15px 0;
  padding: 0;
}

.stoff-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.stoff-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 100px;
}

.stoff-button:hover {
  border-color: #003a5d;
  box-shadow: 0 2px 8px rgba(0, 58, 93, 0.1);
  transform: translateY(-2px);
}

.stoff-button.active {
  border-color: #10b981;
  border-width: 3px;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  background: #f0fdf4;
}

.stoff-button img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 6px;
}

.stoff-button span {
  font-size: 11px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  line-height: 1.2;
}

.stoff-button.active span {
  color: #10b981;
  font-weight: 600;
}

/* Seitenwand Checkboxen Section */
.seitenwand-checkboxes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seitenwand-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.seitenwand-checkbox-wrapper:hover {
  border-color: #003a5d;
  background: #f0f8ff;
}

.seitenwand-checkbox-wrapper:has(.seitenwand-checkbox:checked) {
  border-color: #003a5d;
  background: #f0f8ff;
}

.seitenwand-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #003a5d;
  flex-shrink: 0;
}

.seitenwand-checkbox-wrapper label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  flex: 1;
  user-select: none;
}

.seitenwand-checkbox-wrapper:has(.seitenwand-checkbox:checked) label {
  color: #003a5d;
  font-weight: 600;
}

/* Seitenwand NebenWand Checkboxen Section */
.seitenwand-nebenwand-checkboxes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Seitenwand Material Section */
.seitenwand-material-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.seitenwand-material-title {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 16px;
}

.seitenwand-material-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.seitenwand-material-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 90px;
}

.seitenwand-material-button:hover {
  border-color: #003a5d;
  box-shadow: 0 2px 8px rgba(0, 58, 93, 0.1);
  transform: translateY(-2px);
}

.seitenwand-material-button.active {
  border-color: #10b981;
  border-width: 3px;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  background: #f0fdf4;
}

.seitenwand-material-button img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 6px;
}

.material-color-preview {
  width: 100%;
  height: 60px;
  border-radius: 4px;
  margin-bottom: 6px;
  border: 1px solid #e5e7eb;
}

.seitenwand-material-button span {
  font-size: 11px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  line-height: 1.2;
}

.seitenwand-material-button.active span {
  color: #10b981;
  font-weight: 600;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .ausstattung-content {
    padding: 15px;
  }
  
  .ausstattung-button {
    padding: 12px;
  }
  
  .ausstattung-button img {
    width: 35px;
    height: 35px;
  }
  
  .ausstattung-button span {
    font-size: 15px;
  }
  
  .sub-buttons {
    margin-left: 0; /* Keine Einrückung auf Mobile */
    width: 100%;
  }
  
  .sub-button {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .stoff-markise-section {
    margin-top: 15px;
    padding-top: 15px;
  }
  
  .stoff-markise-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .stoff-buttons-grid {
    gap: 10px;
  }
  
  .stoff-button {
    padding: 6px;
    min-height: 90px;
  }
  
  .stoff-button img {
    height: 50px;
    margin-bottom: 5px;
  }
  
  .stoff-button span {
    font-size: 10px;
  }
  
  .seitenwand-checkboxes {
    margin-top: 15px;
    padding-top: 15px;
    gap: 10px;
  }
  
  .seitenwand-material-section {
    margin-top: 15px;
    padding-top: 15px;
  }
  
  .seitenwand-material-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .seitenwand-material-buttons-grid {
    gap: 10px;
  }
  
  .seitenwand-material-button {
    padding: 6px;
    min-height: 90px;
  }
  
  .seitenwand-material-button img,
  .material-color-preview {
    height: 50px;
    margin-bottom: 5px;
  }
  
  .seitenwand-material-button span {
    font-size: 10px;
  }
  
  .seitenwand-checkbox-wrapper {
    padding: 8px;
  }
  
  .seitenwand-checkbox {
    width: 18px;
    height: 18px;
  }
  
  .seitenwand-checkbox-wrapper label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .ausstattung-content {
    padding: 10px;
  }
  
  .ausstattung-button {
    padding: 10px;
  }
  
  .ausstattung-button img {
    width: 30px;
    height: 30px;
  }
  
  .ausstattung-button span {
    font-size: 14px;
  }
  
  .coming-soon {
    font-size: 11px;
    padding-left: 40px;
  }
  
  .sub-buttons {
    margin-left: 0; /* Keine Einrückung auf Mobile */
    width: 100%;
  }
  
  .sub-button {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .stoff-markise-section {
    margin-top: 12px;
    padding-top: 12px;
  }
  
  .stoff-markise-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .stoff-buttons-grid {
    gap: 8px;
  }
  
  .stoff-button {
    padding: 5px;
    min-height: 80px;
  }
  
  .stoff-button img {
    height: 45px;
    margin-bottom: 4px;
  }
  
  .stoff-button span {
    font-size: 9px;
  }
  
  .seitenwand-checkboxes {
    margin-top: 12px;
    padding-top: 12px;
    gap: 8px;
  }
  
  .seitenwand-material-section {
    margin-top: 12px;
    padding-top: 12px;
  }
  
  .seitenwand-material-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .seitenwand-material-buttons-grid {
    gap: 8px;
  }
  
  .seitenwand-material-button {
    padding: 5px;
    min-height: 80px;
  }
  
  .seitenwand-material-button img,
  .material-color-preview {
    height: 45px;
    margin-bottom: 4px;
  }
  
  .seitenwand-material-button span {
    font-size: 9px;
  }
  
  .seitenwand-checkboxes {
    margin-top: 12px;
    padding-top: 12px;
    gap: 8px;
  }
  
  .seitenwand-checkbox-wrapper {
    padding: 6px;
  }
  
  .seitenwand-checkbox {
    width: 16px;
    height: 16px;
  }
  
  .seitenwand-checkbox-wrapper label {
    font-size: 12px;
  }
  
  /* Footer bleibt gleich wie in größeren Mobile-Geräten */
  /* Styles werden von der größeren Media Query übernommen */
} 