/* SHOP PAGES */
.page-shop {
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-shop .header.header--over {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #d0d0d0;
}
.page-shop .nav.nav--over {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: nowrap;
  min-width: 0;
  justify-content: flex-end;
  flex: 1;
  margin-right: .35rem;
}
.page-shop main {
  flex: 1;
}

@media (max-width: 1200px) {
  .page-shop .nav.nav--over {
    display: none;
  }
  .page-shop .nav.nav--over.is-open {
    display: flex;
  }
}

.shop-hero {
  padding: 2.4rem 0 1.6rem;
  border-bottom: 1px solid var(--g300);
  background: var(--g100);
}
.shop-hero__crumb {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--g600);
  margin-bottom: .85rem;
}
.shop-hero__crumb a:hover { color: var(--red); }
.shop-hero h1,
.shop-hero__title {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .7rem;
  color: #111;
}
.shop-hero p:not(.shop-hero__title) {
  max-width: 42rem;
  color: var(--g600);
  font-size: .95rem;
  line-height: 1.55;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  padding: 2rem 0 2.6rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--g300);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  color: inherit;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.product-card__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: #f2f2f2;
}
.product-card__body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .35rem;
}
.product-card__body strong {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.product-card__body span {
  color: var(--red);
  font-size: .82rem;
  font-weight: 800;
}
.product-card__body p {
  font-size: .84rem;
  color: var(--g600);
  line-height: 1.45;
  margin: .25rem 0 .55rem;
  flex: 1;
}
.product-card__link {
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  padding: 2.2rem 0 3rem;
  align-items: start;
}
.product-detail__media {
  border: 1px solid var(--g300);
  background: #f7f7f7;
  overflow: hidden;
}
.product-detail__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Product gallery (6 images) */
.product-gallery {
  border: none;
  background: transparent;
  overflow: visible;
  display: grid;
  gap: .65rem;
}
.product-gallery__main {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--g300);
  background: #f7f7f7;
  cursor: zoom-in;
  overflow: hidden;
}
.product-gallery__main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.product-gallery__main:hover img {
  transform: scale(1.03);
}
.product-gallery__zoom {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem .65rem;
  pointer-events: none;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .45rem;
}
.product-gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  background: #f7f7f7;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
}
.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: var(--red);
}

/* Lightbox popup */
body.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.25rem 5.5rem;
}
.lightbox[hidden] {
  display: none !important;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  cursor: pointer;
}
.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: 90vh;
  display: grid;
  place-items: center;
  gap: .75rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}
.lightbox__close:hover {
  background: var(--red);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-width: 3.25rem;
  min-height: 3.25rem;
  padding: .65rem .9rem;
  border: 0;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.lightbox__nav-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lightbox__nav:hover {
  background: var(--red);
}
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__counter {
  color: rgba(255, 255, 255, .85);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .product-gallery__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .lightbox {
    padding: 1rem 3.4rem;
  }
  .lightbox__nav {
    min-width: 2.75rem;
    padding: .55rem .65rem;
  }
  .lightbox__nav-label {
    display: none;
  }
  .lightbox__nav--prev { left: .4rem; }
  .lightbox__nav--next { right: .4rem; }
}
.product-detail__price {
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.product-detail__text {
  color: var(--g600);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.product-detail__features {
  display: grid;
  gap: .55rem;
  margin-bottom: 1.6rem;
}
.product-detail__features li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 650;
  font-size: .9rem;
}
.product-detail__features li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
}
.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Product info sections (Innenansicht, Ausstattung, …) */
.product-sections {
  border-top: 1px solid var(--g300);
  background: #efefef;
  padding: 0 0 0;
}
.product-sections__intro {
  max-width: 40rem;
  padding: 2.4rem 0 1.6rem;
}
.product-sections__intro h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 0 0 .45rem;
}
.product-sections__intro p {
  color: var(--g600);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}
.product-section {
  padding: 2.2rem 0;
  border: 0;
}
.product-section--white {
  background: #fff;
}
.product-section--gray {
  background: #efefef;
}
.product-section__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.75rem;
  align-items: center;
}
.product-section--flip .product-section__media {
  order: 2;
}
.product-section--flip .product-section__body {
  order: 1;
}
.product-section__media {
  background: #e6e6e6;
  border: 1px solid var(--g300);
  overflow: hidden;
  min-height: 220px;
}
.product-section__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/10;
}
.product-section__eyebrow {
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 .4rem;
}
.product-section__body h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -.015em;
  margin: 0 0 .7rem;
}
.product-section__body p {
  color: var(--g600);
  font-size: .94rem;
  line-height: 1.65;
  margin: 0 0 .9rem;
}
.product-section__list {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-section__list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.45;
}
.product-section__list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .product-section__inner,
  .product-section--flip .product-section__inner {
    grid-template-columns: 1fr;
  }
  .product-section--flip .product-section__media,
  .product-section--flip .product-section__body {
    order: initial;
  }
}

.product-offer {
  border-top: 1px solid var(--g300);
}
.product-offer .form input[readonly] {
  background: #f5f5f5;
  color: var(--g800, #222);
  font-weight: 650;
}

.product-related {
  border-top: 1px solid var(--g300);
  background: #fff;
  padding-top: 2.4rem;
  padding-bottom: 2.8rem;
}
.product-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.product-related__head .h2 {
  margin-bottom: .35rem;
}
.product-related__sub {
  margin: 0;
  color: var(--g600);
  font-size: .92rem;
  line-height: 1.55;
  max-width: 36rem;
}
.product-related__nav {
  display: flex;
  gap: .45rem;
  flex-shrink: 0;
}
.product-related__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--g300);
  background: #fff;
  color: #111;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.product-related__btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.product-related__slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: max(1.2rem, calc((100vw - var(--wrap)) / 2));
  padding-right: max(1.2rem, calc((100vw - var(--wrap)) / 2));
}
.product-related__slider::-webkit-scrollbar {
  display: none;
  height: 0;
}
.product-related__track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.product-related__track .product-card {
  flex: 0 0 clamp(220px, 24vw, 280px);
  scroll-snap-align: start;
  width: clamp(220px, 24vw, 280px);
}
.product-related__track .product-card__body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 980px) {
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .shop-grid { grid-template-columns: 1fr; }
}

.shop-seo {
  border-top: 1px solid var(--g300);
}
.shop-seo .seo {
  padding-bottom: .4rem;
}
.shop-seo .btn {
  margin-top: .4rem;
}

/* LEGAL PAGES – match homepage SEO text size/width */
.legal {
  max-width: 70rem;
  padding-bottom: 1rem;
}
.legal h2 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: .02em;
  margin: 1.6rem 0 .65rem;
  line-height: 1.3;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 1.1rem 0 .45rem;
  line-height: 1.35;
}
.legal p,
.legal li {
  color: var(--g600);
  font-size: .94rem;
  line-height: 1.65;
  margin-bottom: .85rem;
  max-width: 70rem;
}
.legal ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 1rem;
  display: grid;
  gap: .35rem;
}
.legal a {
  color: var(--red);
  font-weight: 650;
}
.legal a:hover { text-decoration: underline; }
.legal__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--g300);
}
.legal em {
  color: var(--g600);
  font-size: .84rem;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  padding: 2rem 0 2.6rem;
}
.hub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--g300);
  overflow: hidden;
  color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.hub-card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: #f2f2f2;
}
.hub-card__body {
  padding: 1.05rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.hub-card__body strong {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.hub-card__body p {
  font-size: .86rem;
  color: var(--g600);
  line-height: 1.45;
  flex: 1;
}
.hub-card__link {
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: .25rem;
}

@media (max-width: 980px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hub-grid { grid-template-columns: 1fr; }
}
