body {
  margin: 0;
  font-family: 'museo-sans';
  background-color: var(--MainBackColor);
  color: var(--MainFontColor);
}

.section-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--MainColor);
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--MainColor);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: #666;
  line-height: 1.5;
}

.product-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: var(--MainBackColor);
  margin-bottom: 15rem;
}

.product-card-nav {
  background: var(--CardBackground);
  border: 1px solid var(--CardBorder);
  padding: 20px;
  width: 160px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(122, 53, 255, 0.1);
  transition: transform 0.2s, box-shadow 0.3s;
}

.product-card-nav:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(122, 53, 255, 0.3);
}

.product-card-nav img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.product-card-nav span {
  color: var(--MainFontColor);
  font-weight: bold;
}

.product-highlight {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
  color: var(--MainFontColor);
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.carousel {
  position: relative;
  overflow: hidden;
  flex: 1 1 400px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;               
  background: transparent;               
  transition: background 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 10px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.4);
}

.carousel-btn::before {
  font-size: 3rem;
  color: var(--MainColor);
}

.prev::before { content: '‹'; }
.next::before { content: '›'; }

.prev {
  left: 0;
}

.next {
  right: 0;
}


.product-summary {
  flex: 1 1 500px;
}

.product-summary h2 {
  font-size: 2rem;
  color: var(--MainColor);
  margin-bottom: 10px;
}

.product-summary p {
  color: #CCC;
  margin-bottom: 15px;
}

.product-summary ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.product-summary ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.product-summary ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--HighlightColor);
}

.product-summary .btn-primary {
  background: var(--MainColor);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--MainColor);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.product-summary .btn-primary:hover {
  background: var(--HighlightColor);
  box-shadow: 0 0 15px var(--HighlightColor);
  margin-top: 20px;
}

.product-details {
  padding-top: 20px;
  border-top: 1px solid var(--MainBorderColor);
}

.product-details p {
  font-size: 1rem;
  color: #BBB;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-details ul {
  list-style: none;
  padding-left: 0;
}

.product-details ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.product-details ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--HighlightColor);
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #f5f5f5;
  border-radius: 8px;
  text-decoration: none;
  color: var(--MainFontColor);
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.download-btn:hover {
  background: #e0e0e0;
}

.pdr-primary {
  display: inline-block;
  background: var(--MainColor);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--MainColor);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  margin-right: 10px;
}

.preis-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mwst {
  font-size: 0.8em;
  color: #888;
}