/* =========================================================
   LENZWERK — Skalierungs-Komponenten
   Cookie-Consent, WhatsApp-CTA, Exit-Intent, Social Proof,
   Quiz, Konfigurator, Lookbook, Sticky Mobile CTA
   ========================================================= */

/* ===== COOKIE-CONSENT-BANNER ===== */
/* In Bottom-Right-Ecke geparkt, damit es Slider/Content nicht überlagert. */
#lz-consent {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: auto;
  z-index: 9999;
  max-width: 380px;
  width: calc(100vw - 2rem);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
#lz-consent.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.lz-consent-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--color-line);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.16);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Mobil: schmaler Bottom-Sheet über die volle Breite */
@media (max-width: 600px) {
  #lz-consent {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}
.lz-consent-head h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.lz-consent-head p {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  line-height: 1.5;
}
.lz-consent-details {
  margin-top: 1rem;
  border-top: 1px solid var(--color-line-soft);
  padding-top: 1rem;
}
.lz-consent-details summary {
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-accent);
  user-select: none;
  list-style: none;
}
.lz-consent-details summary::before { content: "+ "; }
.lz-consent-details[open] summary::before { content: "− "; }
.lz-consent-options {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.85rem;
}
.lz-consent-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.4;
  align-items: start;
  color: var(--color-text-soft);
}
.lz-consent-option strong { color: var(--color-text); }
.lz-consent-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.lz-btn {
  padding: 0.7rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  flex: 1 1 auto;
}
.lz-btn:hover { background: var(--color-text); color: #fff; }
.lz-btn-primary { background: var(--color-text); color: #fff; }
.lz-btn-primary:hover { background: var(--color-accent); border-color: var(--color-accent); }
.lz-btn-ghost { color: var(--color-text-soft); border-color: var(--color-line); }
.lz-consent-links {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-text-mute);
}
.lz-consent-links a { text-decoration: underline; }

@media (max-width: 540px) {
  .lz-consent-actions .lz-btn { flex-basis: 100%; }
}

/* ===== WHATSAPP FLOATING CTA ===== */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::after {
  content: "Beratung per WhatsApp";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-text);
  color: #fff;
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.wa-float:hover::after { opacity: 1; }

@media (max-width: 720px) {
  .wa-float { width: 54px; height: 54px; bottom: 90px; }
  .wa-float::after { display: none; }
}

/* ===== STICKY MOBILE CTA-BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  background: var(--color-text);
  color: #fff;
  padding: 0.65rem;
  gap: 0.5rem;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.mobile-cta-bar a.primary { background: var(--color-accent); border-color: var(--color-accent); }
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* ===== EXIT-INTENT MODAL ===== */
.lz-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lz-modal-overlay.visible { opacity: 1; pointer-events: auto; }
.lz-modal {
  background: #fff;
  max-width: 560px;
  width: 100%;
  padding: 3rem 2.5rem;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s;
}
.lz-modal-overlay.visible .lz-modal { transform: scale(1); }
.lz-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border: none; background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-mute);
  line-height: 1;
}
.lz-modal-close:hover { color: var(--color-text); }
.lz-modal h2 {
  font-family: var(--font-disp);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.lz-modal h2 em { color: var(--color-accent); font-style: italic; }
.lz-modal p {
  color: var(--color-text-soft);
  margin-bottom: 1.5rem;
}
.lz-modal-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.lz-modal-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-line);
  font-family: inherit;
  font-size: 0.95rem;
}
.lz-modal-form input:focus { outline: none; border-color: var(--color-accent); }
.lz-modal-form button {
  background: var(--color-text);
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.lz-modal-form button:hover { background: var(--color-accent); }
.lz-modal-small {
  font-size: 0.78rem;
  color: var(--color-text-mute);
}
@media (max-width: 540px) {
  .lz-modal { padding: 2rem 1.5rem; }
  .lz-modal-form { flex-direction: column; }
}

/* ===== ERWEITERTE SOCIAL-PROOF SEKTION ===== */
.social-proof {
  background: var(--color-bg-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
}
.social-proof-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.social-proof-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-disp);
}
.social-proof-rating-score {
  font-size: 2.5rem;
  color: var(--color-text);
}
.social-proof-rating-stars {
  color: #d4a447;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.social-proof-rating-meta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--color-bg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: #d4a447;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-family: var(--font-disp);
  font-size: 1.15rem;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-line);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.85rem;
}
.testimonial-author-meta strong { display: block; font-size: 0.9rem; }
.testimonial-author-meta span { display: block; font-size: 0.78rem; color: var(--color-text-mute); }

.trust-logos {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.trust-logos span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-mute);
}
.trust-logo {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  color: var(--color-text-mute);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.trust-logo:hover { opacity: 1; }

/* ===== QUIZ ===== */
.quiz-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}
.quiz-progress {
  height: 2px;
  background: var(--color-line);
  margin-bottom: 2.5rem;
  position: relative;
}
.quiz-progress-bar {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--color-accent);
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz-step {
  display: none;
  animation: quizFade 0.5s ease both;
}
.quiz-step.active { display: block; }
@keyframes quizFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-step h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.quiz-step .quiz-step-meta {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  margin-bottom: 1rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}
.quiz-option {
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--color-line);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.quiz-option:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.quiz-option.selected {
  border-color: var(--color-text);
  background: var(--color-text);
  color: #fff;
}
.quiz-option strong { font-size: 1.05rem; font-weight: 500; }
.quiz-option span { font-size: 0.82rem; color: var(--color-text-mute); }
.quiz-option.selected span { color: rgba(255,255,255,0.7); }
.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}
.quiz-nav button {
  padding: 0.85rem 1.6rem;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--color-text);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
}
.quiz-nav button.primary { background: var(--color-text); color: #fff; }
.quiz-nav button.primary:hover { background: var(--color-accent); border-color: var(--color-accent); }
.quiz-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.quiz-result {
  text-align: center;
  padding: 3rem 1rem;
}
.quiz-result-img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  margin: 0 auto 2rem;
  background: var(--color-bg);
  overflow: hidden;
}
.quiz-result-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== KONFIGURATOR-LIGHT / PREIS-INDIKATOR ===== */
.price-indicator {
  background: var(--color-bg);
  padding: 2.5rem;
  border: 1px solid var(--color-line);
}
.price-indicator h3 {
  font-family: var(--font-disp);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.price-indicator p {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.price-slider-wrap {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.price-slider-wrap label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
}
.price-slider-wrap input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: var(--color-line);
  outline: none;
}
.price-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
}
.price-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.price-display {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--color-line-soft);
  text-align: center;
  margin-top: 1rem;
}
.price-display-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  margin-bottom: 0.5rem;
}
.price-display-value {
  font-family: var(--font-disp);
  font-size: 2.2rem;
  color: var(--color-text);
}

/* ===== LOOKBOOK / TEASER CARDS ===== */
.lookbook-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.lookbook-promo-img {
  aspect-ratio: 3 / 4;
  background: var(--color-bg-dark);
  overflow: hidden;
}
.lookbook-promo-img img { width: 100%; height: 100%; object-fit: cover; }
.lookbook-promo-content .eyebrow { margin-bottom: 1rem; }
.lookbook-promo-content h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.lookbook-form {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.lookbook-form input {
  flex: 1;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-line);
  font-family: inherit;
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .lookbook-promo { grid-template-columns: 1fr; }
  .lookbook-form { flex-direction: column; }
}

/* ===== INSTAGRAM-LANDING-PAGE SPECIFIC ===== */
.ig-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  color: #fff;
  padding: 8rem 1.5rem 3rem;
  overflow: hidden;
}
.ig-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%);
  z-index: 1;
}
.ig-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ig-hero-bg img, .ig-hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.ig-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.ig-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.ig-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.ig-hero-ctas {
  display: grid;
  gap: 0.75rem;
}
.ig-cta-primary {
  background: #fff;
  color: var(--color-text);
  padding: 1.1rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.04em;
  border: 1px solid #fff;
  transition: all 0.2s;
}
.ig-cta-primary:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.ig-cta-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 500;
}
.ig-cta-whatsapp svg { width: 22px; height: 22px; fill: #fff; }

.ig-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.ig-grid-3 div {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-dark);
}
.ig-grid-3 img { width: 100%; height: 100%; object-fit: cover; }

/* ===== HOMEPAGE-ERWEITERUNGEN ===== */
.tile-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-dark);
  color: #fff;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  padding: 1.75rem;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
  z-index: 0;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1));
  z-index: 1;
}
.tile-content { position: relative; z-index: 2; }
.tile:hover img { transform: scale(1.04); }
.tile .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.tile h3 {
  font-family: var(--font-disp);
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 0.4rem;
  color: #fff;
}
.tile span { font-size: 0.85rem; opacity: 0.85; }

/* ===== Helper ===== */
.lz-noscroll { overflow: hidden; }

/* ===== Segment-Only Felder (B2C/B2B Form-Toggle) ===== */
.seg-only {
  animation: segFadeIn 0.3s ease both;
}
.seg-only[style*="display: none"] {
  display: none !important;
}
@keyframes segFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Visuell-distinkter Segment-Toggle */
.segment-toggle label {
  position: relative;
  transition: all 0.2s;
}
.segment-toggle label:has(input:checked)::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: currentColor;
}

/* Screen-reader-only helper (visually hidden, available to AT + SEO) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Reel / Inline-Video Section (b2c.html, ggf. weitere)
   ============================================================ */
.section--reel {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.reel-wrap {
  position: relative;
  background: var(--color-bg-dark, #1a1a1a);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 60px -28px rgba(0, 0, 0, 0.45);
}
.reel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .reel-video {
    /* User mit reduzierter Animation: kein Autoplay */
    animation: none;
  }
}

/* ============================================================
   Bildstrecke / Galerie als SLIDER (b2c.html — "Eindrücke")
   Durchklickbar, ein Bild groß, Pfeile + Punkte + Counter.
   ============================================================ */
.section--galerie {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.galerie-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.galerie-head .lead {
  margin-top: 1rem;
}

/* Slider Wrapper */
.slider {
  position: relative;
}
.slider-viewport {
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-bg-dark, #1a1a1a);
}
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.slider-slide {
  flex: 0 0 100%;
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-dark, #1a1a1a);
}
.slider-slide a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-slide figcaption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 0.9rem;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-sans, system-ui);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-btn:hover {
  background: rgba(10, 10, 10, 0.78);
  transform: translateY(-50%) scale(1.05);
}
.slider-btn:focus-visible {
  outline: 2px solid var(--color-accent, #8b6f47);
  outline-offset: 2px;
}
.slider-btn--prev { left: 1rem; }
.slider-btn--next { right: 1rem; }
.slider-btn[disabled] {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-line, #d6d2cc);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dot.is-active {
  background: var(--color-accent, #8b6f47);
  transform: scale(1.4);
}
.slider-dot:focus-visible {
  outline: 2px solid var(--color-accent, #8b6f47);
  outline-offset: 3px;
}

/* Counter */
.slider-counter {
  text-align: center;
  font-family: var(--font-sans, system-ui);
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-text-mute, #6b6a66);
  margin-top: 0.5rem;
}

/* Mobil: kompakter */
@media (max-width: 700px) {
  .slider-btn { width: 2.5rem; height: 2.5rem; font-size: 1.3rem; }
  .slider-btn--prev { left: 0.5rem; }
  .slider-btn--next { right: 0.5rem; }
  .slider-slide figcaption { font-size: 0.7rem; bottom: 0.75rem; left: 0.75rem; }
}
