/* ══════════════════════════════════════════
   KLANGFEST — Styles (extends main style.css)
   Waldig, warm, verspielt — Erdtöne & Festival-Vibes
   ══════════════════════════════════════════ */

:root {
  --kf-olive: #6f724d;
  --kf-olive-light: #8a8d5e;
  --kf-olive-glow: #a3a67a;
  --kf-warm: #a68a64;
  --kf-gold: #c4a96a;
  --kf-terra: #b07856;
  --kf-terra-light: #d4956a;
  --kf-rust: #c27c4f;
  --kf-moss: #7a8b6a;
  --kf-moss-light: #9aab8a;
  --kf-cream: #faf6f0;
  --kf-sand: #e8dfd3;
  --kf-sand-light: #f0e9df;
  --kf-bark: #5c4a3a;
  --kf-mauve: #815c9e;

  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
}

/* ── Progress Bar ── */
.kf-progress-bar {
  height: 3px;
  background: var(--kf-sand);
}
.kf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--kf-moss), var(--kf-olive), var(--kf-olive-light));
  width: 33%;
  transition: width 0.6s ease;
}
.kf-progress-labels {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--kf-cream);
  border-bottom: 1px solid var(--kf-sand);
}
.kf-pl {
  font-family: var(--font-secondary);
  font-size: 13px;
  color: var(--kf-warm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.kf-pl.active {
  color: var(--kf-olive);
  font-weight: 700;
}

/* ── Step Panels ── */
.kf-step-panel {
  display: none;
  animation: kfFadeIn 0.4s ease;
}
.kf-step-panel.active {
  display: block;
}
@keyframes kfFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Choice Labels (radio/checkbox as cards) ── */
.kf-choice {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.7rem 1.1rem;
  background: var(--kf-sand-light);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-secondary);
  font-size: 18px;
  color: var(--kf-bark);
  border-radius: 6px;
  min-height: 48px;
  user-select: none;
  -webkit-user-select: none;
}
.kf-choice:hover {
  background: var(--kf-sand);
  border-color: var(--kf-warm);
}
.kf-choice input:checked + span {
  font-weight: 700;
  color: var(--kf-olive);
}
.kf-choice input {
  accent-color: var(--kf-olive);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin: 0 10px 0 0;
  padding: 0;
  vertical-align: middle;
}

/* ── Schedule Break Rows ── */
.kf-slot.kf-break {
  background: transparent;
  border: 1px dashed var(--kf-sand);
  cursor: default;
}
.kf-slot.kf-break .kf-slot-label {
  font-style: italic;
  color: var(--kf-warm);
}
.kf-slot.kf-break .kf-slot-time {
  color: var(--kf-warm);
}
.kf-schedule-day small {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--kf-warm);
  font-weight: 400;
  margin-left: 0.5rem;
}

/* ── Thank You ── */
.kf-thanks {
  text-align: center;
  padding: var(--spacing-xl) 0;
}
.kf-thanks-icon {
  font-size: 56px;
  margin-bottom: var(--spacing-sm);
}
.kf-thanks h2 {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--kf-olive);
}
.kf-thanks p {
  font-family: var(--font-secondary);
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--kf-bark);
}
.kf-thanks-sub {
  color: var(--kf-warm) !important;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════
   LANDING HERO
   ══════════════════════════════════════════ */
.kf-landing-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3d3f2a 0%, #4a4735 40%, #3a3228 100%);
}
.kf-landing-hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(111,114,77,0.15) 0%,
    rgba(92,74,58,0.45) 100%
  );
}
.kf-landing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-sm);
  max-width: 800px;
}
.kf-landing-content h1 {
  font-family: var(--font-primary);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(111,114,77,0.3);
}
.kf-landing-content .kf-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(212,149,106,0.9);
  margin-bottom: 0.5rem;
}
.kf-landing-content .kf-date {
  font-family: var(--font-secondary);
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(196,169,106,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}
.kf-cta {
  display: inline-block;
  background: var(--kf-gold);
  color: var(--kf-bark);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.kf-cta:hover {
  background: var(--kf-terra-light);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   INFO STRIP
   ══════════════════════════════════════════ */
.kf-info-strip {
  padding: var(--spacing-md) 1.5rem;
  background: var(--kf-sand-light);
}
.kf-info-strip p {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--kf-bark);
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.kf-info-strip strong {
  color: var(--kf-olive);
}

/* ══════════════════════════════════════════
   FORM HERO
   ══════════════════════════════════════════ */
.kf-form-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3d3f2a 0%, #4a4735 40%, #3a3228 100%);
}
.kf-form-hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(111,114,77,0.15) 0%,
    rgba(92,74,58,0.4) 100%
  );
}
.kf-form-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-sm);
}
.kf-form-hero-content h1 {
  font-family: var(--font-primary);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(111,114,77,0.25);
}
.kf-form-hero-content p {
  font-family: var(--font-secondary);
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(212,149,106,0.85);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   STEPS INDICATOR
   ══════════════════════════════════════════ */
.kf-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--kf-cream);
  border-bottom: 1px solid var(--kf-sand);
}
.kf-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  color: var(--kf-warm);
  letter-spacing: 0.02em;
}
.kf-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 12px;
  font-weight: 700;
  background: var(--kf-sand);
  color: var(--kf-warm);
}
.kf-step.active .kf-step-number {
  background: var(--kf-olive);
  color: var(--color-white);
}
.kf-step.completed .kf-step-number {
  background: var(--kf-moss);
  color: var(--color-white);
}
.kf-step.active,
.kf-step.completed {
  color: var(--kf-olive);
}
.kf-step-line {
  width: 32px;
  height: 1px;
  background: var(--kf-sand);
}

/* ══════════════════════════════════════════
   FORM SECTION
   ══════════════════════════════════════════ */
.kf-form-section {
  padding: var(--spacing-lg) 1.5rem var(--spacing-xl);
  background: var(--kf-cream);
}
.kf-form-container {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Intro Box ── */
.kf-intro {
  font-family: var(--font-secondary);
  font-size: 15px;
  line-height: 1.7;
  color: var(--kf-bark);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--color-white);
  border-left: 4px solid var(--kf-olive);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(111,114,77,0.08);
}

/* ══════════════════════════════════════════
   FORM FIELDS
   ══════════════════════════════════════════ */
.kf-form-row {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}
.kf-form-group {
  flex: 1;
  margin-bottom: var(--spacing-sm);
}
.kf-form-group label {
  display: block;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  color: var(--kf-olive);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.kf-optional {
  color: var(--kf-warm);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.kf-input {
  font-family: var(--font-secondary);
  font-size: 15px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--kf-sand);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--kf-bark);
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kf-input:focus {
  border-color: var(--kf-olive);
  box-shadow: 0 0 0 2px rgba(111,114,77,0.12);
}
.kf-input::placeholder {
  color: var(--kf-warm);
  opacity: 0.6;
}
.kf-number {
  max-width: 100px;
}
.kf-textarea {
  font-family: var(--font-secondary);
  font-size: 15px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--kf-sand);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--kf-bark);
  width: 100%;
  min-height: 100px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kf-textarea:focus {
  border-color: var(--kf-olive);
  box-shadow: 0 0 0 2px rgba(111,114,77,0.12);
}
.kf-textarea::placeholder {
  color: var(--kf-warm);
  opacity: 0.6;
}

/* ══════════════════════════════════════════
   RADIO / CHECKBOX GROUPS
   ══════════════════════════════════════════ */
.kf-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}
.kf-radio-option {
  display: flex;
  align-items: center;
  background: var(--color-white);
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--kf-sand);
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  min-height: 44px;
  user-select: none;
  -webkit-user-select: none;
}
.kf-radio-option:hover {
  background: var(--kf-sand-light);
  border-color: var(--kf-warm);
}
.kf-radio-option input[type="radio"],
.kf-radio-option input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: var(--kf-olive);
  width: 18px;
  height: 18px;
}
.kf-radio-label {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--kf-bark);
  cursor: pointer;
}
.kf-radio-label small {
  display: block;
  font-size: 11px;
  color: var(--kf-warm);
}

/* ── Note Box ── */
.kf-note {
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 1.7;
  color: var(--kf-bark);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-white);
  border-left: 4px solid var(--kf-terra);
  margin-bottom: var(--spacing-sm);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(176,120,86,0.08);
}
.kf-note strong {
  color: var(--kf-terra);
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.kf-btn {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.kf-btn-primary {
  background: var(--kf-olive);
  color: var(--color-white);
}
.kf-btn-primary:hover {
  background: var(--kf-bark);
  transform: translateY(-1px);
}
.kf-btn-dark {
  background: var(--kf-olive);
  color: var(--color-white);
}
.kf-btn-dark:hover {
  background: var(--kf-bark);
}
.kf-btn-secondary {
  background: transparent;
  color: var(--kf-olive);
  border: 1px solid var(--kf-sand);
}
.kf-btn-secondary:hover {
  background: var(--kf-sand-light);
}
.kf-btn-submit {
  background: linear-gradient(135deg, var(--kf-olive) 0%, var(--kf-moss) 100%);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.kf-btn-submit:hover {
  background: linear-gradient(135deg, var(--kf-bark) 0%, var(--kf-olive) 100%);
  transform: translateY(-1px);
}
.kf-btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--spacing-md);
}

/* ══════════════════════════════════════════
   SCHEDULE / SLOTS
   ══════════════════════════════════════════ */
.kf-schedule {
  margin-bottom: var(--spacing-lg);
}
.kf-schedule-day {
  margin-bottom: var(--spacing-md);
}
.kf-schedule-day h3 {
  font-family: var(--font-primary);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--kf-sand);
  color: var(--kf-olive);
}
.kf-schedule-slots {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kf-slot {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 0.9rem;
  background: var(--color-white);
  border: 1px solid var(--kf-sand-light);
  border-radius: 6px;
  transition: all 0.15s;
  cursor: pointer;
  min-height: 44px;
  user-select: none;
  -webkit-user-select: none;
  flex-wrap: wrap;
}
.kf-slot:hover {
  border-color: var(--kf-olive-light);
  background: var(--kf-sand-light);
}
.kf-slot input[type="checkbox"] {
  accent-color: var(--kf-olive);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin: 0 10px 0 0;
}
.kf-slot-time {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--kf-warm);
  min-width: 95px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.kf-slot-label {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--kf-bark);
  flex: 1;
}
.kf-slot-tag {
  font-family: var(--font-secondary);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  color: var(--color-white);
  font-weight: 700;
  border-radius: 4px;
}
.kf-slot-tag.workshop {
  background: var(--kf-olive);
}
.kf-slot-tag.kitchen {
  background: var(--kf-terra);
}
.kf-slot-tag.build {
  background: var(--kf-bark);
}
.kf-slot-tag.cleanup {
  background: var(--kf-moss);
}
.kf-slot-tag.performance {
  background: var(--kf-mauve);
}

/* ── Workshop Input ── */
.kf-workshop-input {
  display: none;
  margin-top: 0.4rem;
  width: 100%;
}
.kf-workshop-input .kf-input {
  font-size: 13px;
  padding: 0.5rem 0.6rem;
  background: var(--kf-sand-light);
}

/* ══════════════════════════════════════════
   DONATION / COMMITMENT
   ══════════════════════════════════════════ */
.kf-donation {
  padding: var(--spacing-md);
  background: var(--color-white);
  margin-bottom: var(--spacing-sm);
  border-left: 4px solid var(--kf-gold);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(196,169,106,0.08);
}
.kf-donation .kf-heart {
  font-size: 20px;
  display: block;
  margin-bottom: 0.3rem;
}
.kf-donation p {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--kf-bark);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
.kf-donation strong {
  color: var(--kf-olive);
}
.kf-commitment {
  padding: 0.8rem var(--spacing-md);
  background: var(--kf-olive);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 14px;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.02em;
  border-radius: 6px;
}

/* ══════════════════════════════════════════
   STANDALONE THANK YOU PAGE (danke.html)
   ══════════════════════════════════════════ */
.kf-thanks-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-sm);
}
.kf-thanks h1 {
  font-family: var(--font-primary);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--kf-olive);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 782px) {
  .kf-form-container {
    padding: 0;
  }
  .kf-form-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .kf-form-row {
    flex-direction: column;
    gap: 0;
  }
  .kf-landing-hero {
    min-height: 60vh;
  }
  .kf-form-hero {
    min-height: 280px;
  }
  .kf-slot {
    flex-wrap: wrap;
  }
  .kf-slot-time {
    min-width: auto;
  }
  .kf-btn-row {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: stretch;
  }
  .kf-btn-row .kf-btn,
  .kf-btn-row .kf-btn-submit {
    text-align: center;
  }
  .kf-steps {
    gap: 0.5rem;
    padding: 1rem 1rem;
  }
  .kf-step-line {
    width: 16px;
  }
  .kf-progress-labels {
    padding: 0.75rem 1rem;
  }
}

/* ── Existing Entries ── */
.kf-existing-entries {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--kf-sand-light);
  border-radius: 10px;
  border: 1px solid var(--kf-sand);
}
.kf-entries-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--kf-bark);
  margin-bottom: 0.75rem;
}
.kf-entries-list {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #5c4a3a;
  line-height: 1.6;
}
.kf-entries-loading,
.kf-entries-empty {
  color: #999;
  font-style: italic;
  margin: 0;
}
.kf-entry-group {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--kf-sand);
}
.kf-entry-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.kf-entry-time {
  font-weight: 600;
  color: var(--kf-olive);
  margin-bottom: 0.15rem;
}
.kf-entry-item {
  padding: 0.15rem 0 0.15rem 0.5rem;
}
.kf-entry-name {
  font-weight: 600;
}
.kf-entry-item em {
  color: var(--kf-olive);
  font-style: normal;
}
.kf-vegi-hint {
  font-size: 13px;
  color: var(--kf-moss);
  font-weight: 400;
}
.kf-slot-count {
  display: inline-block;
  background: var(--kf-moss);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.1rem 0.4rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  line-height: 1.4;
}

/* ── Assigned people inline in schedule slots ── */
.kf-slot-assigned {
  width: 100%;
  margin-top: 0.25rem;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.kf-assign-person {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 11px;
  color: var(--kf-moss);
  background: var(--kf-sand-light);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  line-height: 1.5;
  white-space: nowrap;
}
.kf-assign-person em {
  font-style: normal;
  color: var(--kf-olive);
  font-weight: 600;
}

/* ── Bildergalerie (Swipe) ── */
.kf-gallery {
  width: 100%;
}
.kf-gallery .section-label {
  margin-bottom: 0.5rem;
}

.kf-gallery-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--kf-sand-light);
  -webkit-user-select: none;
  user-select: none;
}

.kf-gallery-slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 */
  overflow: hidden;
}

.kf-gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  -webkit-user-drag: none;
  pointer-events: none;
}
.kf-gallery-img.active {
  opacity: 1;
  z-index: 1;
}

.kf-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: var(--kf-brown);
  cursor: pointer;
  z-index: 3;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.kf-gallery-arrow:hover {
  background: #fff;
}
.kf-gallery-prev { left: 8px; }
.kf-gallery-next { right: 8px; }

.kf-gallery-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-body);
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 3;
}

@media (max-width: 768px) {
  .kf-gallery-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .kf-gallery-prev { left: 6px; }
  .kf-gallery-next { right: 6px; }
}
