/* Böwing Design — Nachbau
   Schriften: Montserrat (H1), Inter (Rest). Original via Elementor/WordPress. */

:root {
  --text: #333;
  --black: #000;
  --muted: #777;
  --line: #e6e6e6;
  --bg: #fff;
  --field: #f2f2f2;
  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo img { width: 44px; height: 44px; object-fit: contain; }

.main-nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 15px;
  color: var(--black);
  transition: opacity .2s;
}
.main-nav a:hover { opacity: .55; }

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .03em;
}
.lang-switch a {
  color: var(--muted);
  transition: color .2s;
}
.lang-switch a:hover { color: var(--black); }
.lang-switch a.active {
  color: var(--black);
  font-weight: 500;
}

/* ---------- HERO ---------- */
.hero { padding: 0; }
/* Gepinnter Hero: bleibt beim Scrollen stehen, damit die Faltung voll abläuft */
.hero-scroll { position: relative; height: 230vh; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 28px 0;
}
.hero-box {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 620px;
  background: radial-gradient(120% 120% at 32% 34%, #f5f5f5 0%, #eaeaea 48%, #dcdcdc 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
  color: var(--black);
}
/* Scroll-Hinweis (verschwindet, sobald gescrollt wird) */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 1;
  transition: opacity .4s;
}
.scroll-hint span {
  display: block;
  width: 22px;
  height: 34px;
  border: 1.5px solid #555;
  border-radius: 11px;
  position: relative;
}
.scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: #555;
  border-radius: 2px;
  animation: scroll-dot 1.5s ease-in-out infinite;
}
@keyframes scroll-dot { 0%{opacity:0;transform:translateY(0)} 30%{opacity:1} 70%{opacity:1} 100%{opacity:0;transform:translateY(10px)} }
.hero.scrolled .scroll-hint { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .scroll-hint span::after { animation: none; } }
.hero-content h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--black);
}
.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #1d1d1d;
}
.hero-content p span { display: inline; }

/* ---------- COLLECTIONS ---------- */
.collection { padding: 60px 0; }
.collection-head {
  max-width: 640px;
  margin: 0 auto 42px;
  text-align: center;
}
.collection-head h3 {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--black);
  margin: 0 0 12px;
}
.collection-head p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
}

.product { display: block; }
.product-img {
  overflow: hidden;
  background: var(--field);
  aspect-ratio: 3 / 2;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product:hover .product-img img { transform: scale(1.04); }

.product-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 2px 0;
  border-bottom: 1px solid var(--line);
}
.product-label h4 {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  margin: 0;
}
.product-label span {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- INSTAGRAM ---------- */
.instagram { padding: 50px 0; }
.instagram-inner {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.instagram-icon img { width: 40px; height: 40px; }
.instagram-icon { transition: opacity .2s; }
.instagram-icon:hover { opacity: .6; }
.instagram-inner p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* ---------- KONTAKT ---------- */
.contact { padding: 70px 0 90px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-text h3 {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--black);
  margin: 0 0 20px;
}
.contact-text p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 10px;
  max-width: 360px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label > span {
  font-size: 13px;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--field);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 14px;
  width: 100%;
  resize: vertical;
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #bbb;
  background: #fff;
}
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.contact-form .checkbox input { width: auto; margin-top: 3px; }
.contact-form .checkbox span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.contact-form .checkbox a { color: var(--text); text-decoration: underline; }

.contact-form button {
  align-self: flex-start;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: var(--black);
  border: none;
  border-radius: 4px;
  padding: 13px 30px;
  cursor: pointer;
  transition: opacity .2s;
}
.contact-form button:hover { opacity: .8; }

/* ---------- PRODUKT-DETAIL ---------- */
.product-detail { padding-bottom: 20px; }

/* Vollbreites Banner (= Featured-Image) */
.pd-banner {
  width: 100%;
  height: clamp(280px, 44vw, 630px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Textblock: schmale rechtsbündige Meta-Spalte + Beschreibung */
.pd-text {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: 70px 0 50px;
}
.pd-meta { text-align: right; }
.pd-cat {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--black);
  margin: 0;
}
.pd-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 4px 0 0;
}
.pd-desc { max-width: 760px; }
.pd-desc p { font-size: 16px; line-height: 1.7; margin: 0 0 18px; color: var(--text); }
.pd-desc p:last-child { margin-bottom: 0; }
.pd-desc p.spec { margin-bottom: 6px; }
.pd-desc strong { font-weight: 600; color: var(--black); }

.ig-line { font-size: 16px; color: var(--text); margin-top: 18px; }
.ig-line a { color: #c0392b; text-decoration: none; word-break: break-all; }
.ig-line a:hover { text-decoration: underline; }

/* Galerie: 3-spaltiges Raster, einheitlich beschnitten */
.pd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 20px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  background: var(--field);
  aspect-ratio: 43 / 35;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Shop-CTA */
.shop-cta { text-align: center; padding: 50px 0 70px; }
.shop-cta h3 {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--black);
  margin: 0 0 20px;
}
.shop-btn {
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: var(--black);
  border-radius: 4px;
  padding: 14px 34px;
  transition: opacity .2s;
}
.shop-btn:hover { opacity: .8; }

.related { border-top: 1px solid var(--line); }
.related .product-grid { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 860px) {
  .pd-text { grid-template-columns: 1fr; gap: 8px; padding: 40px 0 30px; }
  .pd-meta { text-align: left; }
  .pd-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 600px) {
  .pd-gallery { grid-template-columns: 1fr; }
  .related .product-grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.copyright { font-size: 13px; color: var(--muted); }
.site-footer nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.site-footer a:hover { color: var(--black); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .hero-box {
    justify-content: center;
    max-height: none;
  }
  .hero-content {
    background: rgba(244, 244, 244, .5);
    padding: 24px;
    border-radius: 8px;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
  }
  .hero-content h1 { font-size: 44px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .header-inner { min-height: 60px; }
  .main-nav ul { gap: 20px; }
  .hero-content h1 { font-size: 36px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
