/* ==================================================
   Spezifische Anpassungen für iPhone 14 (Portrait)
   ================================================== */
/*
@media only screen 
  and (device-width: 390px) 
  and (device-height: 844px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: portrait) {
*/
  /* Body-Padding etwas reduzieren */
  body {
    padding: 5px !important;
  }
  
  /* Header-Titel etwas kleiner */
  .header-row h2 {
    font-size: 20px !important;
  }
  /* Logo ein Stück kleiner */
  .header-row img {
    width: 140px !important;
  }

  /* Card-Max-Breite leicht verringern */
  .card {
    max-width: 90%
	margin: 0 auto !important;
	gap: 5px;
  }
  
  .card-content
 {
    flex: 1;
    padding-right: 0px;
}
  
  .card .thumbnails
 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 0;
    flex-wrap: wrap;
}

  /* Tab-Padding und Schrift für enge Display anpassen */
  .tabs {
    padding: 0 5px !important;
  }
  .tab-button {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  /* Actions-Buttons full width */
  .actions .price-hit,
  .actions .button,
  .actions .video-button {
    width: 50% !important;
  }

  /* Footer-Schrift und Abstände verkleinern */
  .footer-card .footer-legal {
    gap: 0.5rem !important;
    font-size: 8px !important;
	justify-content: center;
  }
}

/* ==================================================
   Fix Header-Overlap auf iPhone 14 & co.
   ================================================== */
.header-row {
  /* Volle Breite des Cards nutzen und zentrieren */
  width: 100% !important;
  max-width: 360px !important;
  margin: 0 auto 12px !important;

  /* Spaltenlayout erzwingen */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  
  /* damit lange Wörter nicht brechen */
  word-break: keep-all;
}

/* Titel einzeilig mit Ellipse, wenn’s zu lang wird */
.header-row h2 {
  width: 100% !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin: 0 !important;
}

/* Logo direkt unter dem Titel, etwas kleiner */
.header-row img {
  margin-top: 8px !important;
  width: 130px !important;
  max-width: 70% !important;
  height: auto !important;
  object-fit: contain !important;
}

.footer-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 60px;
    max-width: 95%;
    margin: 40px auto 0;
    gap: 20px;
}

.footer-card .footer-content
 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    align-items: start;
    justify-items: stretch;
    justify-content: start;
    align-content: center;
}

.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    padding-inline-end: 0px;
	align-items: center;
}





