/* === Floating Coffee Button === */
#floating-coffee {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #79c26e;
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 99999;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: wiggle 3s infinite;
}

#floating-coffee:hover {
  background-color: #66aa5b;
  transform: scale(1.05);
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  50% { transform: rotate(-1deg); }
  75% { transform: rotate(1deg); }
}

/* === Social Follow Block === */
.custom-social-block {
  background: #f4f8fb;
  padding: 30px;
  margin-top: 60px;
  border-top: 3px solid #0073aa;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.custom-social-block h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #0073aa;
}

.custom-social-block ul {
  list-style: none;
  padding: 0;
}

.custom-social-block ul li {
  margin: 10px 0;
  font-size: 16px;
}

.custom-social-block ul li a {
  text-decoration: none;
  color: #0073aa;
  font-weight: 600;
  transition: all 0.2s ease;
}

.custom-social-block ul li a:hover {
  text-decoration: underline;
  color: #005580;
}

/* === Beitragsdesign-Anpassungen === */
.single-post .entry-header {
  padding-top: 2rem;
  position: relative;
  z-index: 10;
}

.single-post .post-thumbnail {
  margin-bottom: 2rem;
}

/* === Breadcrumbs ausblenden === */
.breadcrumb,
.breadcrumbs,
.breadcrumb-trail {
  display: none;
}

/* === Swiper Testimonial Slider Final Style === */
.testimonial-slider-section {
  background: #fff3f0;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-heading {
  font-size: 2rem;
  color: #2a2a2a;
  margin-bottom: 40px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}

.swiper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 50px;
}

.swiper-slide {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  font-size: 1.05rem;
  font-family: Georgia, serif;
  line-height: 1.6;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #999;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #e4572e;
}

