.buy-section {
  margin-top: 100px;
  width: 100%;
  background: #fff;
  padding: 60px 0 50px 0;
}

.buy-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
  justify-content: flex-start;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.buy-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 400px;
  min-width: 290px;
  max-width: 480px;
  padding-right: 0;
}

.buy-main-image {
  width: 100%;
  max-width: 420px;
  border: 1.5px solid #e7e7e7;
  border-radius: 8px;
  box-shadow: 0 4px 20px 0 rgba(111,193,139,0.09);
  margin-bottom: 13px;
  background: #f5faf6;
  object-fit: contain;
}

.buy-thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.buy-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1.5px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: border 0.19s, box-shadow 0.16s;
  background: #f5f5f5;
}

.buy-thumb:hover, .buy-thumb.active {
  border: 2.5px solid #6fc18b;
  box-shadow: 0 0 7px 0 #b5e5c6;
}

.buy-info-block {
  flex: 2 1 350px;
  min-width: 260px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding-top: 5px;
}

.buy-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #232;
}

.buy-price-row {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 12px;
}

.buy-main-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #232;
}

.buy-old-price {
  font-size: 1.07rem;
  color: #888;
  text-decoration: line-through;
  font-weight: 500;
}

.buy-desc {
  font-size: 1.09rem;
  color: #323232;
  margin-bottom: 18px;
  line-height: 1.45;
}

.buy-form {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

.buy-label {
  width: 33%;
  font-size: 1.08rem;
  color: #232;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.buy-qty-input {
  width: 50px;
  padding: 7px 12px;
  font-size: 1.04rem;
  border-radius: 6px;
  border: 1px solid #d3e0d6;
  background: #f8faf8;
  margin-left: 4px;
  outline: none;
  transition: border 0.18s;
}

.buy-qty-input:focus {
  border: 1.5px solid #6fc18b;
}
.buy-btn {
  width: 80%;
  padding: 9px;
  background-color: #6fc18b;
  border: 1px solid #62aa7a;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.buy-btn-now {
  width: 80%;
  padding: 9px;
  background-color: #ffa41c;
  border: 1px solid #f08804;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}


.buy-btn:hover {
  background: #4ba757;
}

.buy-btn-now:hover {
  background: #f7981c;
}


.buy-thumb.active-thumb {
  border: 2.5px solid #6fc18b;
  box-shadow: 0 0 8px 0 #b5e5c6;
}


.carousel-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 54px 0 60px 0;
  background: #fff;
}
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 22px 0 rgba(80,180,110,0.08);
  background: #fafafa;
}
.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.66,.05,.43,1.1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 33.3333%;
  padding: 0 9px;
  box-sizing: border-box;
  opacity: 1;
  transition: opacity 0.35s;
}
.carousel-slide img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(80,180,110,0.04);
  background: #e8f6ee;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4ba757cc;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 3;
  opacity: 0.75;
  transition: background 0.18s, opacity 0.15s;
  margin: 0 6px;
}
.carousel-btn:hover {
  background: #21724a;
  opacity: 1;
}
.carousel-btn.prev { left: -2px; }
.carousel-btn.next { right: -2px; }

@media (max-width: 900px) {
  .carousel-slide img { height: 170px; }
}
@media (max-width: 700px) {
  .carousel-container { max-width: 99vw; }
  .carousel-slide { flex: 0 0 90vw; }
  .carousel-slide img { height: 140px; }
  .carousel-viewport { width: 95vw; }
}




@media (max-width: 980px) {
  .buy-container {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    padding: 0 2vw;
  }
  .buy-image-block,
  .buy-info-block {
    max-width: 97vw;

    min-width: unset;
    padding-right: 0;
  }
  .buy-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 600px) {
  .buy-container {
    padding: 0;
  }
  .buy-section {
    padding: 30px 0 25px 0;
  }
  .buy-info-block {
    padding: 0px 40px 25px 15px;
    gap: 12px;
  }
  .buy-main-image {
    max-width: 96vw;
    border-radius: 7px;
  }
  .buy-title {
    font-size: 1.9rem;
  }
  .buy-desc {
    font-size: 1.01rem;
  }
  /* .buy-btn {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 7px;
  } */
  .buy-thumb {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 500px) {
  .buy-form {
    display: flex;
    flex-direction: column;
    
    gap: 32px;
  }
  .buy-label {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .buy-title { font-size: 1.97rem; }
  .buy-desc { font-size: 0.91rem; }

  .buy-image-block {
    max-height: 300px;
  }
  .buy-main-image {
    height: 250px;
  }
}






/* ===========================
   Header/Intro (vor dem Grid)
   =========================== */
.product-description-header {
  width: 100%;
  padding: 68px 0 38px 0;
  background: #fff;
  text-align: center;
}
.product-section-label {
  color: #6fc18b;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.product-title {
  font-size: 2.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
  letter-spacing: -1px;
}
.product-intro {
  font-size: 1.18rem;
  color: #545454;
  margin-bottom: 0;
  line-height: 1.55;
}

/* ===========================
   Benefits-Grid + Cards
   =========================== */
.product-benefits-grid {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 0 12px;
  overflow: hidden; /* verhindert horizontales Scrollen bei Anim-Start */
}

.product-benefit-card {
  background: #fcfcfc;
  border-radius: 24px;
  padding: 38px 36px 30px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  /* Reveal-on-scroll: Off-Status */
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity .55s ease-out,
    transform .65s cubic-bezier(.22,.61,.36,1),
    filter .55s ease-out,
    box-shadow .35s ease;
  will-change: opacity, transform, filter;
}

.product-benefit-card h3 {
  text-align: center;
  font-size: 1.28rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 12px;
  line-height: 1.35;
}
.product-benefit-card p {
  color: #444;
  font-size: 1.04rem;
  margin-bottom: 19px;
  line-height: 1.55;
}

/* Sichtbar-Zustand (per JS-Klasse, wie zuvor "reveal") */
.product-benefit-card.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* dezenter Hover, wenn sichtbar */
.product-benefit-card.reveal:hover {
  box-shadow: 0 10px 28px rgba(20,40,30,.08);
  transform: translateY(-2px);
}

/* Stagger (Eintaktung) */
.product-benefits-grid .product-benefit-card:nth-child(1) { transition-delay: .05s; }
.product-benefits-grid .product-benefit-card:nth-child(2) { transition-delay: .18s; }
.product-benefits-grid .product-benefit-card-large         { transition-delay: .32s; }

/* Bildbox in der Card (ehem. .feature-chart) */
.product-benefit-image {
  width: 90%;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  margin-top: 10px;
  /* overflow: hidden; */
  box-sizing: border-box;
}
.product-benefit-image img {
  width: 100%;
  max-width: 390px;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* ===========================
   Large Card (Text + Bild nebeneinander)
   =========================== */
.product-benefit-card-large {
  grid-column: 1 / span 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-right: 46px;
}
.product-benefit-card-large > div:first-child {
  flex: 1;
  min-width: 0; 
}
.product-benefit-card-large .product-benefit-image {
  flex: 1.4;
  margin-top: 0;
}

/* Bonus: Inhalte in der Large-Card leicht nachschieben */
.product-benefit-card-large > div:first-child,
.product-benefit-card-large .product-benefit-image {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .5s ease-out,
    transform .6s cubic-bezier(.22,.61,.36,1);
}
.product-benefit-card-large.reveal > div:first-child {
  transition-delay: .10s;
  opacity: 1;
  transform: none;
}
.product-benefit-card-large.reveal .product-benefit-image {
  transition-delay: .20s;
  opacity: 1;
  transform: none;
}

/* ===========================
   Button (ehem. .learn-more-btn)
   =========================== */
.product-link {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 42px;
  padding: 13px 22px 13px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.19s;
  margin-top: 24px;
  gap: 15px;
}
.product-link:hover { background: #355c20; }

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7ff86;
  color: #181818;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  font-size: 1.35em;
  transition: background 0.18s;
}
.product-link:hover .arrow-circle { background: #b3f346; }

/* ===========================
   Carousel-Bereich unter der Large-Card
   =========================== */
.product-carousel {
  width: 100%;
  padding: 0 0 6px 0; /* schlank */
  background: #fff;
}
.product-carousel-container {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 22px 0 rgba(80,180,110,0.08);
  background: #fafafa;
}
.product-carousel-track {
  display: flex;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(.66,.05,.43,1.1);
}
.product-carousel-slide { /* falls du slides als divs erzeugst */
  flex: 0 0 33.3333%;
  padding: 0 9px;
  box-sizing: border-box;
}
.product-carousel-slide img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(80,180,110,0.04);
  background: #e8f6ee;
}
.product-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4ba757cc;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 3;
  opacity: 0.75;
  transition: background 0.18s, opacity 0.15s;
  margin: 0 6px;
}
.product-carousel .carousel-btn:hover { background: #21724a; opacity: 1; }
.product-carousel .carousel-btn.prev { left: 8px; }
.product-carousel .carousel-btn.next { right: 8px; }

/* ===========================
   Motion-Respect
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .product-benefit-card,
  .product-benefit-card-large > div:first-child,
  .product-benefit-card-large .product-benefit-image {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  /* .product-title { font-size: 2.18rem; } */
  .product-description-header { padding: 36px 0 18px 0; display: flex; align-items: center; flex-direction: column;}
}

@media (max-width: 900px) {
  .product-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-benefit-card-large {
    flex-direction: column;
    grid-column: auto;
    align-items: flex-start;
    padding-right: 26px;
    gap: 18px;
  }
  .product-benefit-card-large .product-benefit-image {
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 700px) {
  /* wenn du im Carousel nur 1 Slide zeigen willst */
  .product-carousel-slide { flex: 0 0 90vw; }
  .product-carousel-viewport { width: 95vw; }
  .product-carousel-slide img { height: 100px; width: 70%; }
  .product-carousel-slide { /* falls du slides als divs erzeugst */
  flex: 0 0 25%;
  padding: 0 9px;
  box-sizing: border-box;
}

.product-benefits-grid {
  justify-items: center;
}

.product-benefit-card {
  width: 500px;
}
}

@media (max-width: 600px) {
.product-benefit-card {
  width: 350px;
}
}

@media (max-width: 450px) {
  .product-intro {
  width: 350px;
  font-size: 1.18rem;
  color: #545454;
  margin-bottom: 0;
  line-height: 1.55;
}
.product-benefit-card {
  width: 250px;
}
}
@media (max-width: 600px) {
  /* wenn du im Carousel nur 1 Slide zeigen willst */
  .product-carousel-slide { flex: 0 0 90vw; }
  .product-carousel-viewport { width: 95vw; }
  .product-carousel-slide img { height: 50px; width: 70%; }
  .product-carousel-slide { /* falls du slides als divs erzeugst */
  flex: 0 0 25%;
  padding: 0 9px;
  box-sizing: border-box;
}
}

@media (max-width: 450px) {
  /* wenn du im Carousel nur 1 Slide zeigen willst */
  .product-carousel-slide { flex: 0 0 90vw; }
  .product-carousel-viewport { width: 95vw; }
  .product-carousel-slide img { height: 50px; width: 100%; }
  .product-carousel-slide { /* falls du slides als divs erzeugst */
  flex: 0 0 25%;
  padding: 0 9px;
  box-sizing: border-box;
}
}

@media (max-width: 360px) {
.product-benefit-card {
  width: 200px;
}
}

/* ===========================
   Kleine Stabilitäts-Helfer
   =========================== */
/* .product-benefit-card-large > * { min-width: 0; }              kein Overflow in Grid-Spalte */
/* .product-benefit-image { width: 100%; box-sizing: border-box; } sichere Breite */
