@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES – LIGHT DESIGN (Bambu Lab inspired)
   ============================================ */
:root {
  --bg: #f7f7f7;
  --bg-white: #ffffff;
  --bg-surface: #f0f0f0;
  --bg-card: #ffffff;
  --border: #e2e5e9;
  --border-hover: #b0b8c1;
  --accent: #00ae42;
  --accent-hover: #008f35;
  --accent-glow: rgba(0, 174, 66, 0.1);
  --text: #111318;
  --text-muted: #5a6472;
  --text-dim: #9aa3ae;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-accent: 0 4px 16px rgba(0, 174, 66, 0.3);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-y: scroll; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 160px; /* Space for 160px header */
}
@media (max-width: 768px) {
  body { padding-top: 80px; }
}
img { display:block; max-width:100%; }
a { text-decoration:none; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.gradient-text {
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-text { color: var(--accent); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-glow);
  border: 1px solid rgba(232,93,4,0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--text);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.93rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,93,4,0.4);
  color: #fff;
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface);
  transform: translateY(-1px);
  color: var(--text);
}
.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.6rem 1.3rem;
  font-size: 0.88rem;
}
.btn-outline-accent:hover {
  background: var(--accent-glow);
  color: var(--accent);
}
.btn-large { padding: 0.95rem 2.2rem; font-size: 1rem; }

/* ============================================
   NAVIGATION
   ============================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 160px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  background: rgba(255,255,255,0.95); 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px); 
  border-bottom: 1px solid var(--border); 
  transition: var(--transition);
  isolation: isolate; /* Safari Fix for mix-blend-mode multiply */
}
@media (max-width: 768px) {
  header { height: 80px; }
}

/* SAFARI SPECIFIC BLENDING FIX */
@supports (-webkit-hyphens:none) {
  header {
    background: #ffffff !important; /* Solider Hintergrund für Safari */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}
.logo { 
  display: flex; 
  align-items: center; 
  text-decoration: none; 
}
.logo-img { 
  height: 128px; 
  width: auto; 
  transition: var(--transition); 
  margin-top: 10px;
  mix-blend-mode: multiply;
  filter: contrast(1.15) brightness(1.08);
  -webkit-backface-visibility: hidden; /* Safari blending fix */
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .logo-img { height: 60px; margin-top: 5px; mix-blend-mode: multiply; filter: contrast(1.15) brightness(1.08); }
}
@media (max-width: 480px) {
  .logo-img { height: 48px; margin-top: 2px; mix-blend-mode: multiply; filter: contrast(1.15) brightness(1.08); }
}
.logo:hover .logo-img { 
  transform: scale(1.05); 
}
nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
nav a:hover { color: var(--text); background: var(--bg-surface); }
nav a.active { color: var(--accent); font-weight: 600; }
nav .nav-cta { margin-left: 0.6rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 2rem 8%;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.mobile-nav a:hover { color: var(--accent); background: var(--bg-surface); border-radius: var(--radius-sm); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 64px 5% 4rem;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.hero-content { z-index: 2; padding-right: 3rem; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.3rem;
  color: var(--text);
}
.hero h1 .accent-text { color: var(--accent); }
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-hd-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-hd-logo {
  width: 90% !important;
  max-width: 650px !important;
  height: auto !important;
  object-fit: contain !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  filter: contrast(1.15) brightness(1.08);
  mix-blend-mode: multiply;
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ============================================
   PRODUCT CARDS STYLING ENHANCEMENTS
   ============================================ */
#productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #productGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  #productGrid .product-info { padding: 0.8rem; }
  #productGrid .product-info h3 { font-size: 0.88rem; }
  #productGrid .product-info p { font-size: 0.78rem; margin-bottom: 0.6rem; }
  #productGrid .product-price { font-size: 0.95rem; }
  
  /* Fix for zoomed product images - make them fully visible */
  #productGrid .product-img-wrap { 
    aspect-ratio: 1 / 1; 
    background: #fff;
    padding: 5px;
  }
  #productGrid .product-img-wrap img,
  #productGrid .slide img { 
    object-fit: contain !important; 
    width: 100% !important;
    height: 100% !important;
  }
  #productGrid .slider-container { aspect-ratio: 1 / 1 !important; }
}
@media (max-width: 400px) {
  #productGrid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  transition: max-height 0.4s ease;
}
.product-desc.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more-btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  margin-bottom: 1.2rem;
  text-decoration: underline;
}
.read-more-btn:hover { color: var(--accent-hover); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-section {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 5%;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
  padding: 7rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.story-image { position: relative; }
.story-image img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.story-image::before {
  content: '';
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, rgba(232,93,4,0.3), transparent 60%);
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
}
.story-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

/* ============================================
   VISION SECTION
   ============================================ */
.why-section {
  padding: 6rem 5%;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-content { max-width: 780px; margin: 0 auto; text-align: center; }
.why-quote {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-top: 2rem;
  padding: 2.5rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.why-quote::before {
  content: '"';
  position: absolute; top: -0.6rem; left: 1.8rem;
  font-size: 5rem; color: var(--accent);
  font-family: Georgia, serif; line-height: 1;
  opacity: 0.5;
}

/* ============================================
   SERVICES TEASER
   ============================================ */
.services-teaser { padding: 6rem 5%; background: var(--bg-white); }
.section-center { text-align: center; }
.section-center .section-label { margin: 0 auto 1rem; }
.subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.service-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,93,4,0.4);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(232,93,4,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.2rem;
}
.service-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.65rem; color: var(--text);
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.services-cta { text-align: center; margin-top: 0.5rem; }

/* ============================================
   SHOP TEASER
   ============================================ */
.shop-teaser {
  padding: 6rem 5%;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.shop-teaser-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 3rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.shop-teaser-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), rgba(232,93,4,0.2));
}
.shop-teaser-box .section-label { margin: 0 auto 1.2rem; }
.shop-teaser-box p {
  color: var(--text-muted); font-size: 1rem;
  margin-bottom: 2.2rem; max-width: 440px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.shop-teaser-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section { padding: 6rem 5%; background: var(--bg-white); border-top: 1px solid var(--border); }
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-inner p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 5%;
  padding-top: 100px;
  text-align: center;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), rgba(232,93,4,0.2));
}
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.page-hero p { color: var(--text-muted); font-size: 1rem; max-width: 520px; line-height: 1.7; }

/* ============================================
   SERVICES FULL GRID
   ============================================ */
.services-full { padding: 5rem 5%; background: var(--bg); }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card-full {
  padding: 2rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card-full:hover {
  transform: translateY(-4px);
  border-color: rgba(232,93,4,0.35);
  box-shadow: var(--shadow-md);
}
.service-card-full ul { list-style: none; margin-top: 1rem; }
.service-card-full ul li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.service-card-full ul li::before { content: '→'; color: var(--accent); flex-shrink: 0; font-size: 0.85rem; margin-top: 1px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { padding: 6rem 5%; background: var(--bg-surface); border-top: 1px solid var(--border); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  max-width: 1050px;
  margin: 0 auto;
}
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.8rem; font-size: 0.95rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 0.8rem; padding: 0.9rem 1.2rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.contact-detail:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-md); }
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-detail span { font-weight: 500; font-size: 0.9rem; }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: 0.78rem; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-group input[type="checkbox"] {
  width: auto;
  appearance: auto;
  -webkit-appearance: auto;
  display: inline-block;
  cursor: pointer;
  accent-color: var(--accent);
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { height: 130px; resize: vertical; }
.file-upload {
  border: 2px dashed var(--border); border-radius: var(--radius-sm);
  padding: 1.8rem; text-align: center; cursor: pointer;
  transition: var(--transition); background: var(--bg);
}
.file-upload:hover, .file-upload.dragover {
  border-color: var(--accent); background: var(--accent-glow);
}
.file-upload-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.file-upload p { color: var(--text-muted); font-size: 0.86rem; }
.file-upload span { color: var(--accent); font-weight: 600; }
.submit-btn { width: 100%; justify-content: center; margin-top: 0.5rem; font-size: 0.97rem; padding: 0.95rem; }
.form-success {
  display: none; text-align: center; padding: 3rem;
  color: var(--accent); font-size: 1.05rem; font-weight: 600;
}

/* ============================================
   SHOP FILTER BAR
   ============================================ */
.shop-filter-bar {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}
.filter-pill.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.filter-pill .pill-count {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0,0,0,0.1);
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}
.filter-pill.active .pill-count {
  background: rgba(255,255,255,0.25);
}
.filter-search {
  flex: 1;
  min-width: 180px;
  max-width: 320px;
  padding: 0.55rem 1rem 0.55rem 2.4rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--bg-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239aa3ae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") 0.85rem center no-repeat;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.filter-search::placeholder { color: var(--text-dim); }
.filter-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 174, 66, 0.1);
}
.filter-results-info {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
  padding-left: 0.2rem;
}
@media (max-width: 600px) {
  .filter-row { gap: 0.4rem; }
  .filter-pill { padding: 0.4rem 0.85rem; font-size: 0.78rem; }
  .filter-search { max-width: 100%; min-width: 100%; }
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-section { padding: 4rem 5%; max-width: 1200px; margin: 0 auto; }
.etsy-banner {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--accent-glow);
  border: 1.5px solid rgba(232,93,4,0.3);
  border-radius: var(--radius); padding: 1.8rem;
  margin-bottom: 3rem; box-shadow: var(--shadow-sm);
}
.etsy-banner-icon { font-size: 2.2rem; flex-shrink: 0; }
.etsy-banner h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text); }
.etsy-banner p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.etsy-banner .btn { margin-left: auto; flex-shrink: 0; }
/* Shop Admin Toolbar */
.shop-admin-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #fff8f5;
  border: 1.5px solid rgba(232,93,4,0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  gap: 1rem; flex-wrap: wrap;
}
.shop-admin-bar p { font-size: 0.88rem; color: var(--text-muted); }
.shop-admin-bar p strong { color: var(--accent); }
.admin-actions { display: flex; gap: 0.7rem; }
button.admin-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text);
  transition: var(--transition); font-family: inherit;
}
button.admin-btn:hover { border-color: var(--accent); color: var(--accent); }
button.admin-btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: var(--shadow-accent); }
button.admin-btn.primary:hover { background: var(--accent-hover); color: #fff; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .product-grid .product-info { padding: 0.8rem; }
  .product-grid .product-info h3 { font-size: 0.88rem; }
  .product-grid .product-info p { font-size: 0.78rem; margin-bottom: 0.6rem; }
  .product-grid .product-price { font-size: 0.95rem; }
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }
}
@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.product-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,93,4,0.3);
  box-shadow: var(--shadow-md);
}
.product-card-edit-btn {
  position: absolute; top: 0.7rem; right: 0.7rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: none; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.9rem;
  transition: var(--transition); z-index: 10;
  box-shadow: var(--shadow-sm);
}
.product-card-edit-btn:hover { border-color: var(--accent); color: var(--accent); }
.admin-mode .product-card-edit-btn { display: flex; }
.admin-mode .product-card { cursor: default; }

/* In-Web Admin Highlights */
.admin-mode-active .logo-img:hover, 
.admin-mode-active .hero-hd-logo:hover, 
.admin-mode-active .story-image img:hover {
  outline: 3px dashed var(--accent);
  outline-offset: 5px;
  border-radius: 8px;
  filter: brightness(1.1);
  transition: var(--transition);
}
.product-img-wrap {
  width: 100%; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-surface);
  overflow: hidden; position: relative;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, rgba(232,93,4,0.06) 0%, var(--bg-surface) 100%);
}
.product-info { padding: 1.4rem; }
.product-category {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 0.3rem;
}
.product-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.product-info p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.6; margin-bottom: 1.2rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.15rem; font-weight: 800; color: var(--accent); }
.shop-cta { text-align: center; padding: 4rem 0 1rem; }
.shop-cta p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.97rem; }
/* Add Product Card */
.add-product-card {
  background: var(--bg-surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 320px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  font-weight: 600;
}
.add-product-card:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.admin-mode .add-product-card { display: flex; }

/* Product Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%; max-width: 800px;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.modal h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 2rem; color: var(--text); }
.modal-actions { display: flex; gap: 0.8rem; margin-top: 1.5rem; flex-wrap: wrap; }
.modal-delete { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.modal-delete:hover { background: #dc2626; color: #fff; }

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-section { padding: 5rem 5%; background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(232,93,4,0.4); }
.faq-question {
  padding: 1.3rem 1.7rem;
  display: flex; align-items: center;
  justify-content: space-between;
  cursor: pointer; gap: 1rem;
  user-select: none;
}
.faq-question h3 { font-size: 0.97rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: var(--accent);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent); color: #fff;
  border-color: var(--accent);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner {
  padding: 0 1.7rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.85; font-size: 0.9rem;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-cta { text-align: center; margin-top: 4rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 3rem; box-shadow: var(--shadow-sm); }
.faq-cta h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.7rem; color: var(--text); }
.faq-cta p { color: var(--text-muted); margin-bottom: 1.3rem; font-size: 0.95rem; }

/* ============================================
   IMPRESSUM
   ============================================ */
.legal-section { padding: 9rem 5% 6rem; max-width: 760px; margin: 0 auto; }
.legal-section h1 { font-size: clamp(2rem,5vw,2.8rem); font-weight: 800; letter-spacing:-0.03em; margin-bottom: 2.5rem; color: var(--text); }
.legal-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.legal-block:last-child { border-bottom: none; }
.legal-block h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; color: var(--text); }
.legal-block p, .legal-block address { color: var(--text-muted); line-height: 1.85; font-style: normal; font-size: 0.95rem; }

/* ============================================
   LINKS PAGE
   ============================================ */
.links-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #fff8f5 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.links-container { width: 100%; max-width: 440px; text-align: center; position: relative; z-index: 2; }
.links-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 1.3rem;
  box-shadow: var(--shadow-accent);
}
.links-logo { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.4rem; letter-spacing:-0.02em; color: var(--text); }
.links-logo span { color: var(--accent); }
.links-tagline { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 0.9rem; }
.link-btn {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; padding: 1rem 1.5rem;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-weight: 600; font-size: 0.94rem; margin-bottom: 0.8rem;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.link-btn:hover {
  transform: scale(1.02) translateY(-1px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.link-btn-icon { font-size: 1.3rem; flex-shrink: 0; }
.link-btn-text { flex: 1; text-align: left; }
.link-btn-sub { display: block; font-size: 0.77rem; color: var(--text-dim); font-weight: 400; margin-top: 0.1rem; }
.link-btn-arrow { color: var(--text-dim); font-size: 0.9rem; }
.links-footer { margin-top: 2.5rem; color: var(--text-dim); font-size: 0.8rem; }
.links-decoration {
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 4rem 5% 2rem;
  background: var(--text);
  border-top: 1px solid var(--border);
}
footer * { color: rgba(255,255,255,0.7) !important; }
footer .logo { display: none; } /* Logo im Footer entfernt */
footer .logo-img { display: none; }
footer h4 { color: rgba(255,255,255,0.5) !important; }
footer a:hover { color: #fff !important; }
footer .footer-bottom p { color: rgba(255,255,255,0.4) !important; font-size: 0.82rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand .logo { display: inline-block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; max-width: 250px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
  background: rgba(255,255,255,0.07) !important;
}
.social-btn:hover {
  border-color: var(--accent) !important;
  background: rgba(232,93,4,0.2) !important;
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block; font-size: 0.86rem;
  margin-bottom: 0.65rem; transition: var(--transition);
}
.footer-col a:hover { padding-left: 0.2rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   PRODUCT CARDS STYLING ENHANCEMENTS
   ============================================ */
.product-variant-select { margin-bottom: 1rem; }
.product-variant-select label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; margin-bottom: 0.4rem; }
.variant-input { width: 100%; padding: 0.6rem; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--bg-surface); font-family: inherit; font-size: 0.88rem; outline: none; transition: var(--transition); -webkit-appearance: auto; appearance: auto; }
.variant-input:focus { border-color: var(--accent); background: var(--bg-card); }

.product-quantity-wrap { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; padding: 0.6rem 0.8rem; background: var(--bg-surface); border-radius: var(--radius-sm); }
.product-quantity-wrap label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.qty-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-controls button { width: 28px; height: 28px; border-radius: 4px; border: 1px solid var(--border); background: var(--bg-card); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.qty-controls button:hover { border-color: var(--accent); color: var(--accent); }
.qty-controls input { width: 35px; text-align: center; border: none; background: transparent; font-weight: 700; font-size: 0.95rem; color: var(--text); -moz-appearance: textfield; -webkit-appearance: textfield; appearance: textfield; }
.qty-controls input::-webkit-outer-spin-button, .qty-controls input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.etsy-mini-link { display: block; text-align: center; font-size: 0.75rem; color: var(--text-dim); margin-top: 0.8rem; text-decoration: underline; text-underline-offset: 2px; }
.etsy-mini-link:hover { color: var(--accent); }

/* ============================================
   CART SYSTEM STYLING
   ============================================ */
.cart-fab { position: fixed; bottom: 2rem; right: 2rem; width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff; border: none; cursor: pointer; box-shadow: 0 8px 32px rgba(0, 174, 66, 0.4); z-index: 1500; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; transition: var(--transition); }
.cart-fab:hover { transform: scale(1.1) translateY(-5px); background: var(--accent-hover); }
.cart-fab-count { position: absolute; top: -5px; right: -5px; background: var(--text); color: #fff; font-size: 0.75rem; font-weight: 800; min-width: 24px; height: 24px; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 0 5px; border: 2px solid #fff; }

.cart-sidebar { position: fixed; top: 0; right: -420px; width: 400px; height: 100vh; background: var(--bg-card); box-shadow: -10px 0 40px rgba(0,0,0,0.1); z-index: 2000; display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.cart-sidebar.open { transform: translateX(-420px); }
.cart-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.01em; }
.cart-close { background: transparent; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-dim); transition: var(--transition); }
.cart-close:hover { color: var(--text); transform: rotate(90deg); }

.cart-items { flex: 1; padding: 1.5rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { text-align: center; color: var(--text-dim); margin-top: 3rem; font-size: 0.9rem; }
.cart-item { display: flex; gap: 1rem; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--border); position: relative; }
.cart-item-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--bg-surface); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.cart-item-variant { font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-bottom: 0.2rem; }
.cart-item-price { font-size: 0.85rem; color: var(--text-muted); }
.cart-item-remove { background: transparent; border: none; color: #ef4444; cursor: pointer; font-size: 1rem; opacity: 0.6; transition: var(--transition); }
.cart-item-remove:hover { opacity: 1; transform: scale(1.1); }

.cart-footer { padding: 1.5rem; background: var(--bg-surface); border-top: 1px solid var(--border); }
.cart-shipping-toggle { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.2rem; }
.shipping-option { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); padding: 0.6rem 1rem; background: var(--bg-card); border: 1.2px solid var(--border); border-radius: 8px; transition: var(--transition); }
.shipping-option:has(input:checked) { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.shipping-option input { accent-color: var(--accent); }

.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.cart-total span:first-child { font-weight: 600; color: var(--text-muted); }
.cart-total span:last-child { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.cart-checkout-btn { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; margin-bottom: 0.8rem; }
.cart-note { font-size: 0.75rem; text-align: center; color: var(--text-dim); }

.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none; z-index: 1900; transition: opacity 0.4s ease; }
.cart-overlay.show { opacity: 1; pointer-events: auto; }

@media (max-width: 480px) {
  .cart-sidebar { width: 100%; right: -100%; }
  .cart-sidebar.open { transform: translateX(-100%); }
  .cart-fab { bottom: 1.5rem; right: 1.5rem; }
}

.image-preview-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.image-preview-item { position: relative; width: 80px; height: 80px; }
.image-preview-item .remove-img { position: absolute; top: -5px; right: -5px; background: #ff4444; color: #fff; border: none; border-radius: 50%; width: 20px; height: 20px; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Links Page Back Button */
.back-to-site { position: absolute; top: 2rem; left: 2rem; z-index: 10; }
.back-link { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: var(--transition); padding: 0.5rem 1rem; background: rgba(255,255,255,0.8); backdrop-filter: blur(4px); border-radius: 50px; border: 1px solid var(--border); }
.back-link:hover { color: var(--accent); border-color: var(--accent); transform: translateX(-3px); }

/* Slider Styles */
.slider-container { position: relative; width: 100%; aspect-ratio: 1/1 !important; overflow: hidden; background: #eee; }
.slider-track { display: flex; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); height: 100%; width: 100%; }
.slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.product-img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.7); backdrop-filter: blur(4px); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text); transition: var(--transition); z-index: 5; box-shadow: var(--shadow-sm); }
.slider-btn:hover { background: #fff; color: var(--accent); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); border: 1px solid rgba(0,0,0,0.1); }
.dot.active { background: #fff; width: 20px; border-radius: 10px; }

/* Multi-Variant Layout */
.product-variants-group { display: grid; gap: 0.8rem; margin-bottom: 1rem; }
.product-variant-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.3rem; }
.product-variant-header label { font-size: 0.72rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; margin: 0; }

/* Admin Settings Section */
.admin-settings-section { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 2px solid var(--border); }
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.8rem; }
.settings-logo-preview { width: 100%; height: 60px; background: var(--bg-surface); border-radius: 6px; margin-top: 0.5rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.settings-logo-preview img { height: 100%; width: auto; object-fit: contain; }

/* Scroll Arrow Homepage */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  animation: bounce 2s infinite;
}
.scroll-indicator svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}
@media (max-width: 960px) {
  .scroll-indicator { display: none; }
}

/* Admin Bar Global */
.admin-bar-global {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: #000;
  color: #fff;
  z-index: 2000;
  display: none; /* Shown via JS */
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  font-size: 0.75rem;
  font-weight: 600;
}
.admin-bar-global .btn-admin {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.7rem;
}
.admin-bar-global .btn-admin:hover { background: var(--accent); color: var(--text); }
body.admin-mode-active { padding-top: 200px; } /* 160px + 40px admin bar */
body.admin-mode-active header { top: 40px; }
@media (max-width: 768px) {
  body.admin-mode-active { padding-top: 120px; }
  body.admin-mode-active header { top: 40px; }
}

/* Hidden Admin Link in Footer */
.footer-admin-link {
  font-size: 0.6rem;
  color: transparent !important;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
}
.footer-admin-link:hover { color: rgba(255,255,255,0.2) !important; }

/* Checkout Modal */
.checkout-modal .modal { max-width: 800px; padding: 2.5rem; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; margin-top: 1.5rem; }
.checkout-summary-box { background: var(--bg-surface); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--border); }
.checkout-summary-title { font-weight: 700; margin-bottom: 1rem; color: var(--text); border-bottom: 2px solid var(--accent); padding-bottom: 0.5rem; }
.checkout-summary-item { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.5rem; }
.checkout-summary-total { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--border); font-weight: 800; font-size: 1.1rem; color: var(--accent); display: flex; justify-content: space-between; }
.checkout-form .form-group { margin-bottom: 1.2rem; }
.checkout-form input, .checkout-form textarea { background: #fff; }

@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .checkout-modal .modal { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .back-to-site { top: 1rem; left: 1rem; }
  .back-link { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
}
@media (max-width: 960px) {
  .hero { 
    grid-template-columns: 1fr; 
    text-align: center; 
    padding: 60px 5% 3rem; 
    min-height: auto; 
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content { padding-right: 0; margin-bottom: 2rem; }
  .hero-actions { justify-content: center; }
  .hero-image { display: block; max-width: 100%; order: -1; margin-bottom: 2rem; }
  .hero-hd-logo { max-width: 300px !important; }
  .story { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5%; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .etsy-banner { flex-wrap: wrap; }
  .etsy-banner .btn { margin-left: 0; }
}
@media (max-width: 600px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
  .why-quote { padding: 2rem 1.5rem; }
  .shop-teaser-actions { flex-direction: column; align-items: center; }
}

.product-price.price-updated {
  animation: pricePop 0.4s ease-out;
  color: var(--accent);
}

@keyframes pricePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); font-weight: 800; }
  100% { transform: scale(1); }
}

/* ============================================
   ADMIN MODE HIGHLIGHTS
   ============================================ */
body.admin-mode-active .logo-img {
    outline: 3px dashed #ff6400 !important;
    outline-offset: 4px !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1001 !important; /* Über dem Header-Blur */
}

/* Neuer Live-Text-Editor Style */
body.admin-mode-active [data-text-id] {
    cursor: text !important;
    position: relative;
    transition: background 0.2s;
}
body.admin-mode-active [data-text-id]:hover {
    background: rgba(0, 174, 66, 0.05); /* Dezenter grüner Schimmer */
    outline: 1px dashed var(--accent);
}
body.admin-mode-active [data-text-id]:focus {
    background: #fff;
    outline: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(0, 174, 66, 0.2);
    z-index: 10;
}

/* Admin Bar Global Style */
.admin-bar-global {
  position: fixed; top: 0; left: 0; right: 0; height: 50px;
  background: #111; color: #fff; z-index: 9999;
  display: none; align-items: center; justify-content: space-between;
  padding: 0 5%; font-size: 0.85rem; font-weight: 600;
  border-bottom: 2px solid var(--accent);
}
.admin-bar-global .btn-admin {
  background: #333; color: #fff; border: 1px solid #444;
  padding: 0.4rem 1rem; border-radius: 4px; cursor: pointer;
  font-size: 0.8rem; margin-left: 0.5rem; transition: var(--transition);
}
.admin-bar-global .btn-admin:hover { background: #444; border-color: #666; }
.admin-bar-global .btn-save {
  background: var(--accent); border-color: var(--accent);
}
.admin-bar-global .btn-save:hover { background: var(--accent-hover); }

/* Safari Fix: Blend-Mode auf Mobilgeräten erzwingen */
@media (max-width: 960px) {
  header {
    /* Backdrop-filter kann Blending in Safari stören, wir machen es etwas transparenter */
    background: rgba(255,255,255,0.98) !important;
  }
  .logo-img {
    mix-blend-mode: multiply !important;
    background: transparent !important;
  }
}

body.admin-mode-active .hero-image::after,
body.admin-mode-active .story-image::after {
    content: '📸 Bild ändern';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    z-index: 10;
}


body.admin-mode-active .hero-image:hover::after,
body.admin-mode-active .story-image:hover::after {
    opacity: 1;
}

/* ============================================
   VLOG SECTION
   ============================================ */
.vlog-section {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
}

.vlog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.vlog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.vlog-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.vlog-img {
    width: 100%;
    height: 240px;
    background: var(--bg-surface);
    overflow: hidden;
}

.vlog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vlog-card:hover .vlog-img img {
    transform: scale(1.05);
}

.vlog-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vlog-date {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vlog-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
}

.vlog-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre-wrap;
}

.vlog-edit-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.vlog-edit-btn:hover {
    transform: scale(1.1);
    background: var(--accent-hover);
}

@media (max-width: 600px) {
    .vlog-grid {
        grid-template-columns: 1fr;
    }
    .vlog-img { height: 200px; }
}

/* ============================================
   COOKIE / CONSENT BANNER (DSGVO)
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: rgba(255,255,255,0.85);
    z-index: 9999;
    padding: 1.2rem 5%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.6;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { max-width: 700px; flex: 1; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-banner .btn-accept {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.cookie-banner .btn-accept:hover { background: var(--accent-hover); }
@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; text-align: center; padding: 1.5rem 1rem; }
    .cookie-banner p { font-size: 0.82rem; }
}

/* ============================================
   BOT-PROTECTION & FORM ENHANCEMENTS
   ============================================ */
.bot-check-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.03);
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  margin: 1.5rem 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.bot-check-container:hover {
  background: rgba(0,0,0,0.05);
  border-color: var(--accent-glow);
}
.bot-check-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent);
}
.bot-check-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  user-select: none;
}

/* FIX: MOBILE IMAGE VISIBILITY (SAFARI & SLIDER PROOF) */
@media (max-width: 768px) {
  #productGrid .product-img-wrap { 
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: relative !important;
    width: 100% !important;
    background: #fff;
    overflow: hidden;
  }
  #productGrid .product-img-wrap::before {
    content: "";
    display: block;
    padding-bottom: 100%; /* Erzeugt quadratischen Container */
  }
  
  /* Der Slider-Container füllt nun den absoluten Raum aus */
  #productGrid .slider-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  /* Die Bilder innerhalb der Slides fließen nun wieder normal */
  #productGrid .slider-track {
    height: 100% !important;
  }
  #productGrid .slide {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #productGrid .slide img {
    position: relative !important; /* NICHT MEHR ABSOLUT */
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    padding: 10px;
  }
}

/* Cart Item Styling – Optimized for Light Design */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.cart-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.cart-item-main {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text);
}
.cart-item-qty {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
}
.cart-item-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.badge-variant {
    font-size: 0.75rem;
    padding: 3px 10px;
    background: #f0f2f5;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: 12px;
}
.cart-item-price {
    font-weight: 800;
    color: var(--text);
    font-size: 0.95rem;
}
.cart-item-remove {
    background: #fff5f5;
    border: 1px solid #ffe3e3;
    color: #ff4b2b;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cart-item-remove:hover {
    background: #ff4b2b;
    color: white;
    border-color: #ff4b2b;
    transform: scale(1.1) rotate(90deg);
}

/* ============================================
   2026 REDESIGN OVERRIDES
   ============================================ */
:root {
  --bg: #f3f5f6;
  --bg-white: #fbfcfc;
  --bg-surface: #e7ecef;
  --bg-card: #ffffff;
  --border: #d5dde2;
  --border-hover: #97a5af;
  --accent: #0d9f55;
  --accent-hover: #0a8547;
  --accent-glow: rgba(13, 159, 85, 0.12);
  --text: #10171b;
  --text-muted: #5f6c76;
  --text-dim: #84919a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 10px 30px rgba(16, 23, 27, 0.05);
  --shadow-md: 0 22px 50px rgba(16, 23, 27, 0.08);
  --shadow-lg: 0 32px 80px rgba(16, 23, 27, 0.12);
  --shadow-accent: 0 18px 36px rgba(13, 159, 85, 0.18);
  --header-height: 96px;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(13, 159, 85, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f9f9 0%, #f1f4f5 100%);
  padding-top: calc(var(--header-height) + 24px);
}

h1, h2, h3, .section-title, .stat-number {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.section-label {
  background: rgba(16, 23, 27, 0.04);
  border: 1px solid rgba(16, 23, 27, 0.08);
  color: var(--text);
  letter-spacing: 0.12em;
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
}

.btn-outline-accent {
  background: rgba(255, 255, 255, 0.6);
}

header {
  height: var(--header-height);
  padding: 0 4.5%;
  background: rgba(251, 252, 252, 0.84);
  border-bottom: 1px solid rgba(16, 23, 27, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(16, 23, 27, 0.04);
}

.logo-img {
  height: 64px;
  margin-top: 0;
  filter: none;
  mix-blend-mode: normal;
  object-fit: contain;
}

nav {
  gap: 0.45rem;
}

nav a {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
}

nav a.active {
  color: var(--text);
  background: rgba(16, 23, 27, 0.05);
}

.nav-cta {
  margin-left: 0.8rem;
}

.mobile-nav {
  top: 0;
  padding: calc(var(--header-height) + 18px) 1.25rem 1.25rem;
  background: rgba(13, 18, 21, 0.4);
  align-items: flex-start;
  justify-content: flex-start;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-panel {
  width: min(100%, 30rem);
  margin: 0 auto;
  background: rgba(251, 252, 252, 0.98);
  border: 1px solid rgba(16, 23, 27, 0.08);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mobile-nav-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem 0.35rem;
}

.mobile-nav a {
  border-bottom: none;
  border-radius: 14px;
  text-align: left;
  font-size: 1rem;
  padding: 0.9rem 1rem;
}

.mobile-nav-cta {
  background: var(--accent);
  color: #fff !important;
  margin-top: 0.25rem;
}

.mobile-nav-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.5rem 0.5rem 0;
}

.mobile-nav-meta a {
  width: auto;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(16, 23, 27, 0.04);
  padding: 0.55rem 0.8rem;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  padding: 2rem 4.5% 5rem;
  background: transparent;
  max-width: 1320px;
  margin: 0 auto;
}

.hero::after {
  display: none;
}

.hero-content {
  padding-right: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.25rem;
  max-width: 12ch;
}

.hero p {
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero-facts span {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(16, 23, 27, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-visual-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: stretch;
  justify-content: center;
}

.hero-visual-frame,
.proof-visual {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 244, 245, 0.96));
  border: 1px solid rgba(16, 23, 27, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero-visual-frame {
  min-height: 480px;
  padding: 3rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-teaser-status {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(16, 23, 27, 0.85);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}

.hero-hd-logo {
  width: 100% !important;
  max-width: 620px !important;
  filter: drop-shadow(0 14px 24px rgba(16, 23, 27, 0.06));
  mix-blend-mode: normal;
  animation: none;
}

.scroll-indicator {
  bottom: 1rem;
}

.capability-strip,
.process-section,
.proof-section,
.services-teaser,
.shop-teaser,
.cta-section {
  padding-left: 4.5%;
  padding-right: 4.5%;
}

.capability-strip {
  max-width: 1320px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.capability-item,
.process-card,
.proof-card,
.shop-teaser-box,
.service-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 23, 27, 0.08);
  box-shadow: var(--shadow-sm);
}

.capability-item {
  border-radius: 22px;
  padding: 1.4rem 1.5rem;
}

.capability-item strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.4;
}

.services-teaser {
  background: transparent;
}

.services-grid-precision {
  max-width: 1200px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  border-radius: 24px;
  padding: 2rem 1.6rem 1.8rem;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 159, 85, 0.28);
}

.service-icon {
  width: 56px;
  height: 56px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(13, 159, 85, 0.08);
  border: 1px solid rgba(13, 159, 85, 0.16);
  border-radius: 18px;
}

.process-section {
  max-width: 1320px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.process-card {
  border-radius: 24px;
  padding: 1.7rem;
}

.process-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(16, 23, 27, 0.92);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.proof-section {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: stretch;
}

.proof-copy > p {
  max-width: 62ch;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  border-radius: 22px;
  padding: 1.45rem;
}

.proof-card span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--text-dim);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.proof-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

.proof-visual {
  min-height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.printer-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.printer-card {
  border-radius: 20px;
  border: 1px solid rgba(16, 23, 27, 0.08);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.printer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.printer-card-copy {
  padding: 0.9rem 1rem 1rem;
}

.printer-card-copy strong {
  display: block;
  font-size: 1rem;
}

.proof-visual-note {
  margin-top: 0.9rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(16, 23, 27, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.shop-teaser {
  background: transparent;
  border-top: none;
}

.shop-teaser-muted .shop-teaser-box {
  max-width: 760px;
  border-radius: 28px;
  padding: 4.5rem 2.5rem 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 245, 246, 0.96));
}

.shop-teaser-box::before {
  display: none;
}

.shop-teaser-box p {
  max-width: 34rem;
}

.cta-section {
  background: transparent;
  border-top: none;
}

.cta-inner {
  max-width: 900px;
  padding: 3rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(16, 23, 27, 0.98), rgba(25, 41, 36, 0.96));
  box-shadow: var(--shadow-lg);
}

.cta-inner .section-title,
.cta-inner p {
  color: #fff;
}

.cta-inner p {
  opacity: 0.82;
}

.cta-inner .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

footer {
  margin-top: 2rem;
  background: #11181d;
}

.social-btn {
  font-weight: 800;
}

@media (max-width: 1100px) {
  .services-grid-precision,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  body {
    padding-top: calc(var(--header-height) + 12px);
  }

  header {
    padding: 0 1.25rem;
  }

  .logo-img {
    height: 54px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-top: 0.5rem;
  }

  .hero-content {
    text-align: left;
    order: 1;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-image {
    order: 2;
    margin-bottom: 0;
  }

  .hero-visual-frame {
    min-height: 260px;
    padding: 1.5rem 1rem 1rem;
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 78px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo-img {
    height: 46px;
  }

  .hero {
    gap: 1rem;
    padding: 0.25rem 1.25rem 2.2rem;
  }

  .capability-strip,
  .process-section,
  .proof-section,
  .services-teaser,
  .shop-teaser,
  .cta-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .hero p {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
  }

  .hero-facts {
    gap: 0.45rem;
    margin-bottom: 1.1rem;
  }

  .hero-facts span {
    font-size: 0.75rem;
    padding: 0.45rem 0.7rem;
  }

  .hero-facts,
  .hero-actions,
  .cta-actions,
  .shop-teaser-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .shop-teaser-actions .btn {
    justify-content: center;
  }

  .hero-visual-frame {
    min-height: 0;
    padding: 1rem 0.75rem 0.75rem;
    border-radius: 20px;
  }

  .hero-hd-logo {
    max-width: 310px !important;
  }

  .section-label {
    margin-bottom: 0.85rem;
  }

  .section-title {
    margin-bottom: 0.9rem;
  }

  .subtitle {
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .services-grid-precision,
  .process-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-card,
  .proof-card,
  .capability-item {
    padding: 1.15rem;
  }

  .capability-item strong,
  .process-card h3,
  .proof-card strong {
    font-size: 0.98rem;
  }

  .shop-teaser-muted .shop-teaser-box,
  .cta-inner {
    padding: 3.4rem 1.1rem 1.35rem;
  }

  .scroll-indicator {
    display: none;
  }
}
