.section-template--28915065586005__custom_liquid_97yNXW-padding {
  padding-top: calc(40px * 0.75);
  padding-bottom: calc(20px  * 0.75);
}

@media screen and (min-width: 750px) {
  .section-template--28915065586005__custom_liquid_97yNXW-padding {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

/* Variantenauswahl Modal - EXAKT wie in c24-tabs-section.liquid */
.c24-variant-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c24-variant-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.c24-variant-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10001;
}

.c24-variant-modal-content h3 {
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
}

.c24-variant-modal-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
  color: #333;
}

.c24-variant-modal-select option {
  color: #333;
  background: #fff;
}

.c24-variant-modal-select:hover,
.c24-variant-modal-select:focus {
  border-color: #FFBD59;
  outline: none;
}

.c24-variant-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.c24-variant-modal-cancel,
.c24-variant-modal-add {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1.1rem;
}

.c24-variant-modal-cancel {
  background: #f0f0f0;
  color: #333;
}

.c24-variant-modal-cancel:hover {
  background: #e0e0e0;
}

.c24-variant-modal-add {
  background: #111;
  color: #fff;
}

.c24-variant-modal-add:hover {
  background: #FFBD59;
  color: #111;
}


/* Dark Review Section Styles */
.reviews-section-dark {
  background: #000000;
  padding: 60px 20px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: white;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  line-height: 1.2;
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  line-height: 1;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.reviews-header .stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  flex: 0 0 auto;
}

.reviews-header .star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  min-width: 1em;
  font-size: 32px;
  line-height: 1;
  overflow: visible;
  vertical-align: middle;
  color: #333;
  transition: color 0.3s ease;
}

.reviews-header .star.filled {
  color: #FFBD59;
}

.reviews-header .star.half-filled {
  background: linear-gradient(90deg, #FFBD59 50%, #333 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-text {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: white;
}

.reviews-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #aaa;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Slider Styles */
.reviews-slider-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.reviews-slider {
  overflow: hidden;
  margin: 0 60px;
  padding: 20px 0;
  position: relative;
}

.reviews-slider::before,
.reviews-slider::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  z-index: 5;
  pointer-events: none;
}

.reviews-slider::before {
  left: 0;
  background: linear-gradient(to right, #000000 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.reviews-slider::after {
  right: 0;
  background: linear-gradient(to left, #000000 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  touch-action: pan-y;
}

.review-card {
  flex: 0 0 520px;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 2px solid #333;
  transition: all 0.5s ease;
  cursor: grab;
  user-select: none;
  transform: scale(0.88);
  opacity: 0.6;
  z-index: 2;
}

.review-card.active {
  transform: scale(1);
  opacity: 1;
  border-color: #444;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.review-card:active {
  cursor: grabbing;
}

.review-card:not(.active):hover {
  transform: scale(0.92);
  opacity: 0.75;
  border-color: #444;
}

.review-card.active:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: #FFBD59;
  box-shadow: 0 18px 45px rgba(255, 189, 89, 0.25);
}

/* Verifiziert Badge - Grün */
.review-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #22c55e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.review-badge svg {
  flex-shrink: 0;
}

.review-content {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 28px;
  min-height: 280px;
}

.review-image-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.product-image {
  width: 150px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.review-text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-align: left;
  line-height: 1.3;
}

/* Sterne in den Karten */
.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
  margin-bottom: 14px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.review-stars .star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  min-width: 1em;
  font-size: 22px;
  line-height: 1;
  overflow: visible;
  vertical-align: middle;
  color: #444;
  transition: color 0.3s ease;
}

.review-stars .star.filled {
  color: #FFBD59;
}

.review-stars .star.half-filled {
  background: linear-gradient(90deg, #FFBD59 50%, #444 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.star-rating-text {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: #FFBD59;
  margin-left: 8px;
  align-self: center;
}

.review-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 16px;
  font-style: italic;
  text-align: left;
  flex-grow: 1;
}

.review-footer {
  margin-top: auto;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-author {
  font-weight: 700;
  color: #FFBD59;
  font-size: 1.3rem;
  text-align: left;
}

.review-date {
  font-size: 1.05rem;
  color: #777;
  text-align: left;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #000;
}

.slider-arrow:hover {
  background: #FFBD59;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 10px;
}

.slider-arrow-right {
  right: 10px;
}

/* Dots Indicator */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #FFBD59;
  width: 28px;
  border-radius: 5px;
}

/* CTA Button */
.reviews-cta {
  text-align: center;
}

.review-button-dark {
  display: inline-block;
  padding: 16px 36px;
  background-color: #fff;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0;
}

.review-button-dark:hover {
  background-color: #FFBD59;
  color: #000;
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(255, 189, 89, 0.5);
}

/* Review Modal */
.review-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.review-modal.show {
  display: flex;
}

.review-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.review-modal-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #64748b;
}

.review-modal-close:hover {
  background: #e2e8f0;
  color: #1e293b;
  transform: rotate(90deg);
}

.review-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.review-modal-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.review-modal-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

/* Review Form */
.review-form-group {
  margin-bottom: 24px;
}

.review-form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.review-form-group input,
.review-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.review-form-group input:focus,
.review-form-group textarea:focus {
  outline: none;
  border-color: #FFBD59;
  background: #fff;
}

.review-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.review-form-group small {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #64748b;
}

/* Star Rating Input */
.review-star-rating {
  display: flex;
  gap: 8px;
  font-size: 40px;
}

.review-star-input {
  cursor: pointer;
  color: #e2e8f0;
  transition: all 0.2s ease;
  user-select: none;
}

.review-star-input:hover,
.review-star-input.active {
  color: #FFBD59;
  transform: scale(1.1);
}

/* Checkbox */
.review-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.review-form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #FFBD59;
}

.review-form-checkbox label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

/* Submit Button */
.review-submit-btn {
  width: 100%;
  padding: 16px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.review-submit-btn:hover:not(:disabled) {
  background: #FFBD59;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 189, 89, 0.4);
}

.review-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.review-submit-loading svg {
  display: inline-block;
}

/* Success Message */
.review-success-message {
  text-align: center;
  padding: 40px 20px;
}

.review-success-message svg {
  margin-bottom: 20px;
}

.review-success-message h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
}

.review-success-message p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.review-close-success {
  padding: 12px 32px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.review-close-success:hover {
  background: #FFBD59;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 189, 89, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .review-card {
    flex: 0 0 460px;
  }
  
  .product-image {
    width: 130px;
    height: 170px;
  }
  
  .reviews-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .reviews-section-dark {
    padding: 50px 15px;
  }
  
  .reviews-title {
    font-size: 1.8rem;
  }
  
  .reviews-header .star {
    font-size: 26px;
  }
  
  .rating-text {
    font-size: 1.3rem;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
  }
  
  .reviews-header {
    margin-bottom: 30px;
  }
  
  .reviews-slider {
    margin: 0 15px;
  }
  
  .reviews-slider::before,
  .reviews-slider::after {
    display: none;
  }
  
  .review-card {
    flex: 0 0 calc(100vw - 60px);
    max-width: 380px;
    transform: scale(0.92);
  }
  
  .review-card.active {
    transform: scale(1);
  }
  
  .review-card:not(.active):hover {
    transform: scale(0.94);
  }
  
  .review-card.active:hover {
    transform: scale(1.01);
  }
  
  .review-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
    min-height: auto;
  }
  
  .review-image-section {
    order: -1;
  }
  
  .product-image {
    width: 120px;
    height: 155px;
  }
  
  .review-product-title {
    text-align: center;
    font-size: 1.25rem;
  }
  
  .review-stars {
    justify-content: center;
  }
  
  .review-stars .star {
    font-size: 20px;
  }
  
  .star-rating-text {
    font-size: 0.95rem;
  }
  
  .review-text {
    text-align: center;
    font-size: 1rem;
  }
  
  .review-author {
    text-align: center;
    font-size: 1.05rem;
  }
  
  .review-date {
    text-align: center;
    font-size: 0.85rem;
  }
  
  .slider-arrow {
    width: 42px;
    height: 42px;
  }
  
  .slider-arrow-left {
    left: 5px;
  }
  
  .slider-arrow-right {
    right: 5px;
  }
  
  .slider-dots {
    margin-bottom: 15px;
  }
  
  .review-badge {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .review-modal-content {
    padding: 30px 20px;
  }

  .review-star-rating {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 1.8rem;
  }
  
  .reviews-header .star {
    font-size: 22px;
  }
  
  .rating-text {
    font-size: 1.1em;
  }
  
  .reviews-subtitle {
    font-size: 1.15rem;
  }
  
  .reviews-slider {
    margin: 0 10px;
  }
  
  .review-card {
    flex: 0 0 calc(100vw - 50px);
    max-width: 320px;
    transform: scale(0.9);
  }
  
  .review-card.active {
    transform: scale(1);
  }
  
  .review-content {
    padding: 22px 18px;
    gap: 16px;
  }
  
  .product-image {
    width: 110px;
    height: 140px;
  }
  
  .review-product-title {
    font-size: 1.3rem;
  }
  
  .review-stars .star {
    font-size: 18px;
  }
  
  .star-rating-text {
    font-size: 1rem;
  }
  
  .review-text {
    font-size: 1.1rem;
    line-height: 1.55;
  }
  
  .review-author {
    font-size: 1.1rem;
  }
  
  .review-date {
    font-size: 0.95rem;
  }
  
  .review-button-dark {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
  
  .review-badge {
    font-size: 0.85rem;
    padding: 4px 8px;
    top: 12px;
    right: 12px;
  }
  
  .review-badge svg {
    width: 12px;
    height: 12px;
  }
  
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  
  .slider-arrow svg {
    width: 18px;
    height: 18px;
  }
  
  .slider-arrow-left {
    left: 2px;
  }
  
  .slider-arrow-right {
    right: 2px;
  }

  .review-modal-content {
    padding: 24px 16px;
  }

  .review-modal-header h3 {
    font-size: 1.7rem;
  }

  .review-star-rating {
    font-size: 32px;
  }
}
