/* ------------------------------
   GLOBAL
------------------------------- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #ffffff;
   margin-top: 80px;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------
   HEADER
------------------------------- */
.headbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #D22B2B;
  color: white;
  padding: 15px 30px;
  position: fixed;     /* fixiert */
  top: 0;              /* oben anheften */
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;       /* über allem */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* optional für leichte Tiefe */
}

.headbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.headbar .nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 20px;
  display: inline-block;
  transition: color 0.3s, transform 0.3s, background-color 0.3s;
  border-radius: 5px;
  padding: 2px 4px; /* Fixe Padding für alle Zustände */
  background-color: transparent; /* kein „Springen“ beim Hover */
}

.headbar .nav-links a:hover,
.headbar .nav-links a.active {
  color: #FF4500;
  background-color: white;
  transform: scale(1.2);
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
}

.sale {
  font-size: 24px;
  color: yellow;
  font-weight: bold;
  display: inline-block;
  animation: pulseEffect 2s infinite;
}
@keyframes pulseEffect {
  0%, 100% { transform: scale(1); filter: brightness(100%); }
  50% { transform: scale(1.1); filter: brightness(150%); }
}

.register-btn {
  font-weight: bold;
  font-size: 24px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  animation: blinkText 1s infinite;
  transition: transform 0.3s ease, color 0.3s ease;
  gap: 8px;
}

.register-btn:hover {
  animation: none;         /* Blinken stoppen */
  transform: scale(1.2);   /* Schrift etwas größer */
  color: white;          
}

@keyframes blinkText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }   /* nur leicht verblassen */
}
.register-arrow {
  display: inline-block;
  font-size: 28px;        /* Pfeil größer */
  font-weight: bold; 
  margin-right: 10px;
  animation: blinkGrow 1s infinite;
}

@keyframes blinkGrow {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.6);  /* wächst deutlich */
  }
  100% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}



/* ------------------------------
   HEADLINE INFO BAR
------------------------------- */
.headline-info-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;                /* Abstand zwischen den Infos */
  flex-wrap: wrap;           /* bei kleineren Bildschirmen umbrechend */
  background-color: white; /* hellgrau */
  padding: 6px 20px;         /* bisschen Abstand innen */
  font-size: 14px;           /* kleine Schrift */
  color: #333;
  border-radius: 0 0 8px 8px; /* nur untere Ecken abgerundet */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* leichte Schatten */
  position: fixed;
  top: 55px;                /* direkt unter Headbar, Höhe der Headbar anpassen falls nötig */
  width: 100%;
  z-index: 99;
}

.headline-info-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.viewer-info {
  color: black;            /* rote Farbe für Viewer */
}

/* ------------------------------
   HEADLINE
------------------------------- */
.headline {
  font-family: Bebas Neue;
  text-align: center;
  margin-top: 130px;
  line-height: 1.2;
}

.headline .top {
  display: block;
  font-size: 60px;
  color: black;
  font-family: 'Montserrat', sans-serif;
}

.headline .middle {
  display: block;
  font-size: 80px;
  font-weight: bold;
  color: #D22B2B;
  font-family: 'Bebas Neue', sans-serif;
}

.headline .bottom {
  display: block;
  font-size: 60px;
  color: black;
  font-family: 'Montserrat', sans-serif;
}
/* ------------------------------
   SPREADSHEET BUTTON
------------------------------- */
.spreadsheet-container {
  text-align: center;
  margin-top: 40px;
}

.spreadsheet-button {
  display: inline-block;
  background: linear-gradient(90deg, #111, #444, #111); /* Gradient für Bewegung */
  background-size: 200% 100%; /* doppelte Breite für Animation */
  color: white;
  font-size: 40px;          
  font-weight: bold;
  padding: 30px 60px;       
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  animation: shine 3s linear infinite, scalePulse 2s infinite;
  transition: transform 0.3s ease;
  line-height: 1.2;
  margin-bottom: 50px;
}

.spreadsheet-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.spreadsheet-button .sub-text {
  display: block;
  font-size: 20px;
  color: #D22B2B;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
.spreadsheet-button .sub-sub-text {
  display: block;
  font-size: 30px;
}

/* Animation für Lichtbewegung */
@keyframes shine {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

/* Pulsierende Vergrößerung */
@keyframes scalePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}


/* ------------------------------
   INPUT
------------------------------- */
input {
  padding: 10px;
  width: 300px;
  font-size: 16px;
  margin: 20px auto;
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* ------------------------------
   CAROUSEL / BESTSELLER
------------------------------- */
.bestseller-section h2 {
  color: #D22B2B;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 40px;
}

.carousel {
  position: relative;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
}

.carousel a.slide {
  display: block;           
  border-radius: 8px;       
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;    
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover-Effekt */
.carousel a.slide:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.carousel a.slide img {
  width: 100%;
  display: block;           
  border-radius: 0;  
}


.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }
.prev:hover, .next:hover { background: rgba(0,0,0,0.6); }

.bestseller-section {
  border: 3px solid #D22B2B; 
  border-radius: 10px;        
  padding: 20px;              
  margin: 20px auto;          
  max-width: 600px;   
          
}


@media (max-width: 768px) {
  .carousel { width: 95%; height: 300px; }
  .slide-text h3 { font-size: 22px; }
  .slide-text p { font-size: 18px; }
  .prev, .next { font-size: 24px; padding: 10px; }
}

/* ------------------------------
   FEEDBACK
------------------------------- */
.feedback-section {
  text-align: center;
  padding: 60px 20px;
  background: white;
  margin-top: 30px;
}

.feedback-section h2 { font-size: 40px; margin-bottom: 40px; font-weight: bold; }

.feedback-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feedback-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 300px;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feedback-card p { font-size: 18px; font-style: italic; margin-bottom: 15px; }
.feedback-card h4 { font-size: 16px; font-weight: bold; color: #FF2400; }
.stars { font-size: 20px; color: gold; margin-bottom: 10px; }
.reviews-summary { font-size: 18px; font-weight: bold; margin-bottom: 25px; }

/* ------------------------------
   JOIN SECTION
------------------------------- */
.join-section {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.join-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(-45deg, #D22B2B, #C41E3A, #DC143C, #FF2400);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  padding: 40px 60px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  width: 70%;
  max-width: 1000px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.join-button:hover { transform: scale(1.05); }

.join-text { font-size: 50px; font-weight: bold; text-align: center; margin: 0 20px; }
.offer { font-size: 24px; font-weight: bold; }

@keyframes gradientBG { 0% {background-position:0% 50%;} 50% {background-position:100% 50%;} 100% {background-position:0% 50%;} }

/* ------------------------------
   PRODUCT GRID (products.html)
------------------------------- */
.headline-products { 
  font-size: 90px; /* größer */ 
  font-weight: 900; /* sehr fett */ 
  text-align: center; 
  margin-top: 30px;
  margin-right: 20px; 
} 

.info-products { 
  text-align: center; 
  font-size: 24px; 
  font-weight: 500; 
  color: #555; 
  margin: 40px 0; 
  line-height: 1.4; 
  font-family: Arial, sans-serif; } 
  .info-products .highlight { 
    color: #D22B2B; /* rot */ 
    font-weight: bold; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  justify-items: center;
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: center;
  width: 100%;
  max-width: 300px; 
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative; 
  margin-bottom:30px;
}

.product-card:hover {
  transform: scale(1.05);       /* leichte Vergrößerung */
  box-shadow: 0 12px 20px rgba(0,0,0,0.2); /* stärkerer Schatten */
  z-index: 2;                    /* Karte "über" den anderen */
}

.product-card .hover-text {
  position: absolute;
  top: 10px;          /* oben rechts */
  right: 10px;
  background: rgba(255,36,0,0.85);
  color: white;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-weight: bold;
}

.product-card:hover .hover-text {
  opacity: 1;
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #333;
}

.product-card p.price {
  font-size: 18px;
  font-weight: bold;
  color: #D22B2B;
  margin: 0;
}
/* ============================================================
   BEGIN PRODUCT.HTML SECTION
============================================================ */
.product-card-detail {
  width: 95%;
  max-width: 1400px;
  margin: 120px auto 40px auto;
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  height: 700px; /* Einheitliche Höhe */
}

.product-info-left {
  width: 50%;
  background-color: #f7f7f7; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px; 
}

.product-info-left img {
  width: 80%;
  height: auto;          /* Höhe passt sich proportional an */
  max-height: 600px;     /* optional, verhindert zu großes Bild */
  object-fit: contain;    /* kein Abschneiden */
  margin: 40px auto;     /* oben/unten zentriert */
  display: block;
}

.product-info-box {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Abstand oben/unten automatisch */
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative;
}

.product-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-top: 130px;
}

#productPrice {
  font-size: 40px;
  font-weight: bold;
  color: #D22B2B;
  text-align: center;         
  width: 100%;                
  margin: 20px 0 auto;   
}

.buy-button { 
  padding: 20px 60px; 
  font-size: 20px; 
  background-color: #D22B2B; /* Kakobuy-Rot */
  color: white; 
  font-weight: bold; 
  border-radius: 12px; 
  text-align: center; 
  margin: 20px auto;        /* zentriert und Abstand oben/unten */
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease; 
  animation: pulseButton 2s infinite; 
} 

.buy-button:hover { 
  background-color: #FF0000; 
  transform: scale(1.05);
}

@keyframes pulseButton {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}.buy-button { 
  padding: 20px 0; 
  width: 80%;
  font-size: 20px; 
  background-color: #D22B2B; /* Kakobuy-Rot */
  color: white; 
  font-weight: bold; 
  border-radius: 12px; 
  text-align: center; 
  margin-top: 50px;
  margin-left: 100px;        
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease; 
  animation: pulseButton 2s infinite; 
} 

.buy-button:hover { 
  background-color: #FF0000; 
  transform: scale(1.05);
}

@keyframes pulseButton {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}


.product-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #555;
  border-top: 2px solid #ccc;
  padding-top: 10px;
  width: 100%;
  margin-top: 220px;
}

.product-features p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.join-button-top-right {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #D22B2B;
  color: white;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255,36,0,0.6);
  transition: all 0.3s ease;
  z-index: 10;

  /* Animation wie bei dem Glow-Button auf Homepage */
  background: linear-gradient(
    90deg,
    #FF2400,
    #800000,
    #FF6347,
    #800000,
    #FF2400
  );
  background-size: 300% 300%;
  animation: joinGlow 4s linear infinite;
}

@keyframes joinGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.join-button-top-right:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,36,0,0.9);
}
.animated-arrow {
  display: block;
  margin: 10px auto 0 auto;
  width: 30px;
  height: 30px;
  animation: arrowBounce 1s infinite;
  margin-top: 70px;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .product-card-detail {
    flex-direction: column;
    height: auto;
  }
  .product-info-left, .product-info-box {
    width: 100%;
  }
  #productPrice {
    font-size: 32px;
  }
  .buy-button {
    width: 70%;
    font-size: 18px;
    padding: 18px 0;
  }
}
.back-button {
  position: fixed;
  top: 150px; /* unter der Headbar */
  left: 80px;
  background-color: #D22B2B;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-button:hover {
  background-color: #E34234;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


/* ------------------------------
   GROSSE SEARCH BAR
------------------------------- */
#searchContainer {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.search-wrapper {
  position: relative;
  width: 70%;
  max-width: 700px;
}

#searchInput {
  width: 100%;
  padding: 18px 50px 18px 20px; /* Rechts mehr Platz für das Icon */
  font-size: 20px;
  border: 2px solid #D22B2B;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#searchInput:focus {
  border-color: #FF4500;
  box-shadow: 0 0 8px rgba(255,36,0,0.4);
}

#searchButton {
  position: absolute;
  right: 15px; /* Jetzt 15px vom Input-Feld-Rand */
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 20px;
  color: #D22B2B;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s;
  z-index: 10;
}

#searchButton:hover {
  color: #FF4500;
  transform: translateY(-50%) scale(1.1);
}

/* ------------------------------
   FILTERBAR
------------------------------- */

.product-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 20px auto 40px auto;
  flex-wrap: nowrap;
  width: fit-content; /* Container nur so breit wie nötig */
}

.product-filters input[type="number"],
.product-filters select,
.product-filters button#applyFilter {
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 6px;
}

.product-filters input[type="number"] {
  width: 80px; /* kompakte Breite für Min/Max */
}

.product-filters select {
  width: 150px;
}

.applyFilterBtn {
  background-color: #D22B2B;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.applyFilterBtn:hover {
  background-color: #FF0000;
}

.product-filters button#applyFilter {
  background-color: #D22B2B;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.product-filters button#applyFilter:hover {
  background-color: #E34234;
  transform: scale(1.05);
}



/* Fokus-Styling */
.product-filters input[type="number"]:focus,
.product-filters select:focus {
  border-color: #D22B2B;
  box-shadow: 0 0 5px rgba(255,36,0,0.5);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .product-filters {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .product-filters input[type="number"],
  .product-filters select,
  .product-filters button#applyFilter {
    width: 90%;
  }
}
/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0
}

.contact-section h2 {
  font-size: 50px;
  color: #D22B2B;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #D22B2B;
  box-shadow: 0 0 8px rgba(255,36,0,0.3);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-button {
  padding: 18px 40px;
  background-color: #D22B2B;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-button:hover {
  background-color: #E34234;
  transform: scale(1.05);
}
.contact-social {
  text-align: center;
  margin-top: 30px;
}

.contact-social h3 {
  font-size: 20px;
  color: #D22B2B;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s, filter 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(1.3);
}
.contact-social-black {
  background: #f9f9f9;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(-45deg, #111111, #222222, #111111, #222222);
  background-size: 400% 400%;
  animation: blackGradientBG 8s ease infinite;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  margin-bottom: 30px;
}

.contact-social-black h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(255,36,0,0.6);
}

.contact-social-black .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-social-black .social-icons a img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s, filter 0.3s;
  filter: brightness(1.2);
}

.contact-social-black .social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(2);
}

/* Dunkler Gradient-Animation */
@keyframes blackGradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
}

.faq-section h2 {
  font-size: 40px;
  color: #D22B2B;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(-45deg, #111111, #222222, #111111, #222222);
  background-size: 400% 400%;
  animation: faqGradientBG 6s ease infinite;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(255,36,0,0.5);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: transparent;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border: none;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

/* Glanz-Effekt über der Frage beim Hover */
.faq-question::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0) 70%);
  transform: rotate(25deg);
  transition: all 0.7s ease;
}

.faq-item:hover .faq-question::before {
  left: 125%;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #ddd;
  font-size: 18px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
  margin: 15px 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

/* Animation für dunklen Glanz */
@keyframes faqGradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hipobuy-news {
  background: linear-gradient(-45deg,  #D22B2B, #C41E3A, #DC143C, #FF2400);
  background-size: 400% 400%;
  animation: gradientBG 8s ease infinite;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 900px;
  color: white;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.hipobuy-news h2 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 30px;
}

.hipobuy-news .news-items p {
  font-size: 25px;
  margin: 15px 0;
  line-height: 1.4;
}

.hipobuy-news .signup-button {
  display: inline-block;
  padding: 25px 60px;
  font-size: 28px;
  font-weight: bold;
  color: #D22B2B;
  background: white;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 30px;
}

.hipobuy-news .signup-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px white;
}

@keyframes gradientBG {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}

#backToTop {
  position: fixed;
  top: 100px;
  right: 20px;
  display: none; /* standardmäßig versteckt */
  padding: 10px 15px;
  font-size: 16px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
}

#backToTop:hover {
  background-color: #555;
}
/* Pagination Container */
.pagination-container {
  display: flex;
  justify-content: center; /* zentriert die Buttons */
  gap: 20px;              /* Abstand zwischen den Buttons */
  margin: 50px 0;         /* mehr Abstand nach oben und unten */
}

/* Pagination Buttons */
#prevPage,
#nextPage {
  padding: 12px 24px;      /* größere Buttons */
  font-size: 18px;          /* größere Schrift */
  border: 1px solid #333;
  background: #fff;
  cursor: pointer;
  border-radius: 8px;       /* leicht abgerundet */
  font-weight: bold;
  transition: all 0.2s;
}

#prevPage:hover,
#nextPage:hover {
  background: #333;
  color: #fff;
}


