/* ==========================================================================
   fairkaufhandy.de – Homepage, City Pages & B2B Styles
   Prefix legend:
     fkh-hp-  Homepage
     fkh-cp-  City pages
     fkh-b2b- B2B page
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --------------------------------------------------------------------------
   1. RESET / BASE
   -------------------------------------------------------------------------- */

/* Hide WP theme chrome on pages that carry the custom-page body class */
.fkh-custom-page .site-header,
.fkh-custom-page .wp-site-blocks > header,
.fkh-custom-page .site-footer,
.fkh-custom-page .wp-site-blocks > footer,
.fkh-custom-page .has-global-padding > .wp-block-template-part,
.fkh-custom-page .wp-block-template-part,
.fkh-custom-page header.wp-block-template-part,
.fkh-custom-page footer.wp-block-template-part,
/* v9.3.1: Hide old injected elements + page title on custom pages */
.fkh-custom-page #fkh-trust-signals-bar,
.fkh-custom-page .fkh-trust-signals-bar,
.fkh-custom-page .wp-block-post-title,
.fkh-custom-page .entry-title,
.fkh-custom-page #fkh-new-faq-section,
.fkh-custom-page #fkh-social-icons,
.fkh-custom-page #fkh-kundenstimmen-section,
.fkh-custom-page .elementor-widget-container > .faq-section,
.fkh-custom-page [data-fkh-replaced="true"],
/* v9.13.1: Extra safety — hide any stray WP navigation, page-list, site-title elements */
.fkh-custom-page .wp-block-navigation,
.fkh-custom-page .wp-block-page-list,
.fkh-custom-page .wp-block-site-title,
.fkh-custom-page .wp-block-site-tagline,
.fkh-custom-page .wp-block-loginout,
.fkh-custom-page p.has-small-font-size:not([class*="fkh-"]),
/* v9.30.0: Nuclear hide — block theme header/footer template parts (TwentyTwentyFive) */
.fkh-custom-page .wp-site-blocks > *:not(.entry-content):not(.wp-block-post-content):not([class*="fkh-"]):not(main):not(article),
.fkh-custom-page .wp-block-group.has-global-padding:not([class*="fkh-"]) > .wp-block-template-part,
.fkh-custom-page [role="banner"]:not(.fkh-hp-header):not([class*="fkh-"]),
.fkh-custom-page hr.wp-block-separator,
.fkh-custom-page .wp-block-separator,
/* v9.30.5: Hide block theme hr/footer that are OUTSIDE .wp-site-blocks (direct body children) */
body.fkh-custom-page > hr,
body.fkh-custom-page > footer,
body.fkh-custom-page > [role="contentinfo"]:not(.fkh-hp-footer),
body.fkh-custom-page > .wp-site-blocks ~ hr,
body.fkh-custom-page > .wp-site-blocks ~ footer,
body.fkh-custom-page > .wp-site-blocks ~ [role="contentinfo"] {
  display: none !important;
}

/* v9.30.7: Nuclear — kill ALL hr separators on FKH pages */
body.fkh-custom-page hr,
body.fkh-single-post hr,
.fkh-custom-page .wp-site-blocks > hr,
.fkh-custom-page .wp-site-blocks hr {
  display: none !important;
  height: 0 !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* TwentyTwentyFive specific overrides */
.fkh-custom-page,
.fkh-custom-page body {
  background: #0A0A0A !important;
}

.fkh-custom-page .wp-site-blocks {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow-x: hidden !important;
}

.fkh-custom-page .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none;
}

/* Cancel block theme alignfull negative margins that cause overflow */
.fkh-custom-page .is-layout-constrained > .alignfull {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.fkh-custom-page .entry-content.alignfull,
.fkh-custom-page .wp-block-group.alignfull {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.fkh-custom-page .has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fkh-hp-wrapper {
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  background: #FFFFFF;
  overflow-x: hidden;
  color: #333333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fkh-hp-wrapper *,
.fkh-hp-wrapper *::before,
.fkh-hp-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.fkh-hp-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.fkh-hp-wrapper a {
  text-decoration: none;
  color: inherit;
}

.fkh-hp-wrapper ul,
.fkh-hp-wrapper ol {
  list-style: none;
}

.fkh-hp-wrapper button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   2. HEADER
   -------------------------------------------------------------------------- */
.fkh-hp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.3s ease, background 0.3s ease, border-bottom 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
  /* v9.31.0: Safe area inset for iPhones with Dynamic Island */
  padding-top: env(safe-area-inset-top, 0px);
}

.fkh-hp-header--hidden {
  transform: translateY(-100%);
}

.fkh-hp-header--scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.fkh-hp-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.fkh-hp-header__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.fkh-hp-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.fkh-hp-header__nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.fkh-hp-header__nav a:hover {
  color: #FF6B00;
}

.fkh-hp-header__btns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Shared pill button base */
.fkh-hp-btn--track,
.fkh-hp-btn--wa,
.fkh-hp-btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.fkh-hp-btn--track {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF !important;
  font-weight: 600;
}

.fkh-hp-btn--track:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.fkh-hp-btn--wa {
  background: #25D366;
  border: 1.5px solid #25D366;
  color: #FFFFFF !important;
  font-weight: 700;
}

.fkh-hp-btn--wa:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.fkh-hp-btn--cta {
  background: #FF6B00;
  border: 1.5px solid #FF6B00;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.7rem 1.5rem;
}

.fkh-hp-btn--cta:hover {
  background: #e65f00;
  border-color: #e65f00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

/* Hamburger menu button */
.fkh-hp-header__mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0;
  margin-left: 0.5rem;
  transition: background 0.2s;
}

.fkh-hp-header__mobile-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* v9.30.7: Hide hamburger on desktop — nav is already visible */
@media (min-width: 1024px) {
  .fkh-hp-header__mobile-btn {
    display: none !important;
  }
}

/* v9.30.7: More space between nav and buttons */
.fkh-hp-header__nav {
  margin-right: 1.5rem;
}

/* Fullscreen overlay menu (desktop + mobile – matches demo) */
.fkh-hp-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgb(10, 10, 10);
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  /* v9.31.0: Safe area inset for iPhones with Dynamic Island */
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.fkh-hp-mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

/* Menu header (logo + close) */
.fkh-hp-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  flex-shrink: 0;
}

.fkh-hp-mobile-menu__header img {
  height: 48px;
  width: auto;
}

.fkh-hp-mobile-menu__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Nav links list */
.fkh-hp-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 0;
  flex: 1;
}

.fkh-hp-mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease;
}

.fkh-hp-mobile-menu__nav a:hover {
  color: #FF6B00;
}

.fkh-hp-mobile-menu__nav a svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Bottom CTA buttons */
.fkh-hp-mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  flex-shrink: 0;
}

.fkh-hp-mobile-menu__ctas a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 9999px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  transition: all 0.2s ease;
}

.fkh-hp-mobile-menu__ctas .fkh-hp-btn-orange {
  background: #FF6B00;
  color: #FFFFFF;
}

.fkh-hp-mobile-menu__ctas .fkh-hp-btn-orange:hover {
  background: #e65f00;
}

.fkh-hp-mobile-menu__ctas .fkh-hp-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.fkh-hp-mobile-menu__ctas .fkh-hp-btn-whatsapp:hover {
  background: #1fb855;
}

/* --------------------------------------------------------------------------
   3. HERO
   -------------------------------------------------------------------------- */
.fkh-hp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  padding-top: calc(80px + env(safe-area-inset-top, 0px)); /* match header height + safe area */
}

.fkh-hp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.12;
  pointer-events: none;
}

.fkh-hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.98) 45%, rgba(10, 10, 10, 0.35));
  pointer-events: none;
}

.fkh-hp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
}

.fkh-hp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fkh-hp-hero__content h1 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.fkh-hp-hero__orange {
  color: #FF6B00;
}

.fkh-hp-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* v9.20.1: Category page hero subtitle text */
.fkh-hp-hero__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 2rem;
}

.fkh-hp-hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Primary CTA buttons used in hero and elsewhere */
.fkh-hp-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  background: #FF6B00;
  color: #FFFFFF !important;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.fkh-hp-btn-orange:hover {
  background: #e65f00;
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.35);
  transform: translateY(-2px);
}

.fkh-hp-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  background: #25D366;
  color: #FFFFFF !important;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.fkh-hp-btn-whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Trust badges row under hero CTA */
.fkh-hp-hero__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fkh-hp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
}

.fkh-hp-hero__trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* (Old phone-frame/card styles removed – see "Hero phone mockup (full structure)" section below) */

.fkh-hp-hero__phone-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.fkh-hp-hero__phone-check {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.fkh-hp-hero__phone-check-icon {
  color: #1a7a4a;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.fkh-hp-hero__phone-check span:last-child {
  color: #1a7a4a;
  font-size: 0.65rem;
}

/* Scroll indicator */
.fkh-hp-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}

.fkh-hp-hero__scroll span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.fkh-hp-hero__scroll-text {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fkh-hp-hero__scroll-chevron {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  animation: fkh-bounce 1.5s ease-in-out infinite;
}

.fkh-hp-bounce {
  color: rgba(255, 255, 255, 0.85);
  animation: fkh-bounce 1.5s ease-in-out infinite;
  display: flex;
}

.fkh-hp-bounce svg {
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   4. TICKER
   -------------------------------------------------------------------------- */
.fkh-hp-ticker {
  background: #FF6B00;
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
}

.fkh-hp-ticker__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: fkh-ticker 400s linear infinite;
}

.fkh-hp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.fkh-hp-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

@keyframes fkh-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   5. VIDEO SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-video {
  padding: 6rem 0;
  background: #0A0A0A;
}

.fkh-hp-video__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Shared section header pattern (used across dark & light sections) */
.fkh-hp-section-label {
  display: inline-block;
  color: #FF6B00;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.fkh-hp-section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.fkh-hp-section-heading--white {
  color: #FFFFFF;
}

.fkh-hp-section-heading--dark {
  color: #111111;
}

.fkh-hp-section-sub {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

.fkh-hp-section-sub--muted {
  color: #6B7280;
}

.fkh-hp-section-sub--light {
  color: rgba(255, 255, 255, 0.85);
}

.fkh-hp-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.fkh-hp-section-header .fkh-hp-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.fkh-hp-video__container {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  background: #111111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fkh-hp-video__container iframe,
.fkh-hp-video__container video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

/* Video player controls styling */
.fkh-hp-video__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
  background: #000;
  max-height: 480px;
  object-fit: cover;
  border-radius: 1.5rem;
}

/* --------------------------------------------------------------------------
   6. FUNNEL WRAPPER
   -------------------------------------------------------------------------- */
.fkh-hp-funnel-wrap {
  padding: 6rem 0;
  background: #FFFFFF;
}

.fkh-hp-funnel-wrap__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   7. UGC SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-ugc {
  padding: 6rem 0;
  background: #0A0A0A;
}

.fkh-hp-ugc__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-ugc__grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.fkh-hp-ugc__card {
  width: 240px;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
  background: #111111;
}

.fkh-hp-ugc__card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-3px);
}

.fkh-hp-ugc__thumb {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 aspect ratio */
  overflow: hidden;
}

.fkh-hp-ugc__thumb img,
.fkh-hp-ugc__thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* UGC poster thumbnail (covers video until play) */
.fkh-hp-ugc__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* Gradient overlay on top of poster for name/tag readability */
.fkh-hp-ugc__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.fkh-hp-ugc__card--playing .fkh-hp-ugc__poster {
  opacity: 0;
  pointer-events: none;
}

.fkh-hp-ugc__card--playing .fkh-hp-ugc__gradient {
  opacity: 0;
}

.fkh-hp-ugc__card--playing .fkh-hp-ugc__overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fkh-hp-ugc__card--playing video {
  cursor: pointer;
}

.fkh-hp-ugc__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  padding: 0;
}

.fkh-hp-ugc__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

/* Play button SVG triangle — filled orange */
.fkh-hp-ugc__play svg {
  fill: #FF6B00;
  stroke: #FF6B00;
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.fkh-hp-ugc__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #FF6B00;
  margin-left: 3px;
}

.fkh-hp-ugc__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  z-index: 2;
}

.fkh-hp-ugc__name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Space Grotesk', sans-serif;
}

.fkh-hp-ugc__tag {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   8. PICKUP SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-pickup {
  padding: 6rem 0;
  background: #FFFFFF;
}

.fkh-hp-pickup__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-pickup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fkh-hp-pickup__image {
  border-radius: 1.5rem;
  object-fit: cover;
  max-height: 420px;
  width: 100%;
}

.fkh-hp-pickup__content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #111111;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.fkh-hp-pickup__content p {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fkh-hp-pickup__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fkh-hp-pickup__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #333333;
  line-height: 1.5;
}

.fkh-hp-pickup__check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #FF6B00;
  margin-top: 1px;
}

/* --------------------------------------------------------------------------
   9. FEATURES SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-features {
  padding: 6rem 0;
  background: #111111 !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
}

.fkh-hp-features__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}

.fkh-hp-features__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.fkh-hp-features__card {
  background: #1C1C1C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 1.25rem;
  transition: all 0.25s ease;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.08);
}

.fkh-hp-features__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FF6B00;
  transform: translateY(-3px);
}

.fkh-hp-features__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.fkh-hp-features__badge--orange {
  background: rgba(255, 107, 0, 0.2);
}

.fkh-hp-features__badge--green {
  background: rgba(37, 211, 102, 0.2);
}

.fkh-hp-features__badge--blue {
  background: rgba(59, 130, 246, 0.2);
}

.fkh-hp-features__badge--purple {
  background: rgba(139, 92, 246, 0.2);
}

.fkh-hp-features__card-icon {
  width: 40px;
  height: 40px;
  color: #FF6B00;
  margin-bottom: 1rem;
}

.fkh-hp-features__card h3 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.fkh-hp-features__card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. CATEGORIES SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-categories {
  padding: 6rem 0;
  background: #FFFFFF;
}

.fkh-hp-categories__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-categories__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.fkh-hp-categories__card {
  flex: 0 1 calc(20% - 1rem);
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #F8F8F8;
  border-radius: 1rem;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.fkh-hp-categories__card:hover {
  border-color: #FF6B00;
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.fkh-hp-categories__icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all 0.25s ease;
}

.fkh-hp-categories__icon svg,
.fkh-hp-categories__icon img {
  width: 28px;
  height: 28px;
  transition: all 0.25s ease;
}

.fkh-hp-categories__card:hover .fkh-hp-categories__icon {
  background: #FF6B00;
}

.fkh-hp-categories__card:hover .fkh-hp-categories__icon svg {
  color: #FFFFFF;
}

.fkh-hp-categories__card:hover .fkh-hp-categories__icon img {
  filter: brightness(0) invert(1);
}

.fkh-hp-categories__card-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: #333333;
}

.fkh-hp-categories__card-count {
  color: #666666;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   11. SHIPPING SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-shipping {
  padding: 6rem 0;
  background: #111111;
}

.fkh-hp-shipping__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-shipping__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fkh-hp-shipping__content h2 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.fkh-hp-shipping__content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.fkh-hp-shipping__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fkh-hp-shipping__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease;
}

.fkh-hp-shipping__card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.fkh-hp-shipping__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: #FF6B00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fkh-hp-shipping__card-icon svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

.fkh-hp-shipping__card h4 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.fkh-hp-shipping__card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.fkh-hp-shipping__image {
  border-radius: 1.5rem;
  object-fit: cover;
  width: 100%;
  max-height: 420px;
}

/* --------------------------------------------------------------------------
   12. WHY US SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-why {
  padding: 6rem 0;
  background: #FFFFFF;
}

.fkh-hp-why__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fkh-hp-why__content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #111111;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.fkh-hp-why__content > p {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.fkh-hp-why__steps {
  display: flex;
  flex-direction: column;
}

.fkh-hp-why__step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ECECEC;
}

.fkh-hp-why__step:last-child {
  border-bottom: none;
}

.fkh-hp-why__step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #FF6B00;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.fkh-hp-why__step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #0A0A0A;
  margin-bottom: 0.25rem;
}

.fkh-hp-why__step p {
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.55;
}

.fkh-hp-why__image {
  border-radius: 1.5rem;
  object-fit: cover;
  width: 100%;
  max-height: 480px;
}

/* --------------------------------------------------------------------------
   13. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-reviews {
  padding: 6rem 0;
  background: #111111;
}

.fkh-hp-reviews__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-reviews__trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 182, 122, 0.12);
  border: 1px solid rgba(0, 182, 122, 0.25);
  margin-bottom: 2rem;
}

.fkh-hp-reviews__trustpilot-stars {
  display: flex;
  gap: 2px;
}

.fkh-hp-reviews__trustpilot-star {
  width: 18px;
  height: 18px;
  color: #00B67A;
}

.fkh-hp-reviews__trustpilot-rating {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
}

.fkh-hp-reviews__trustpilot-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
}

.fkh-hp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fkh-hp-reviews__card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.fkh-hp-reviews__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FF6B00;
}

.fkh-hp-reviews__card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.fkh-hp-reviews__card-star {
  width: 16px;
  height: 16px;
  color: #00B67A;
}

.fkh-hp-reviews__card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fkh-hp-reviews__card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fkh-hp-reviews__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FF6B00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.fkh-hp-reviews__author-name {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.8125rem;
}

.fkh-hp-reviews__author-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   14. FAQ SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-faq {
  padding: 6rem 0;
  background: #FFFFFF;
}

.fkh-hp-faq__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-faq__category {
  margin-bottom: 2rem;
}

.fkh-hp-faq__category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fkh-hp-faq__category-bar {
  width: 4px;
  height: 20px;
  background: #FF6B00;
  border-radius: 2px;
  flex-shrink: 0;
}

.fkh-hp-faq__category-title h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0A0A0A;
}

.fkh-hp-faq__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fkh-hp-faq__item {
  border-radius: 0.875rem;
  border: 1px solid #E8E8E8;
  background: #FAFAFA;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fkh-hp-faq__item--open {
  border-color: #FF6B00;
  background: rgba(255, 107, 0, 0.03);
}

.fkh-hp-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333333;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  gap: 1rem;
}

.fkh-hp-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #999999;
  transition: transform 0.3s ease, color 0.3s ease;
}

.fkh-hp-faq__item--open .fkh-hp-faq__chevron {
  transform: rotate(180deg);
  color: #FF6B00;
}

.fkh-hp-faq__answer {
  padding: 0 1.5rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.fkh-hp-faq__item--open .fkh-hp-faq__answer {
  padding: 0 1.5rem 1.1rem;
  max-height: 600px;
}

.fkh-hp-faq__answer p {
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   15. CTA / PLZ SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-cta {
  padding: 6rem 0;
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.fkh-hp-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.fkh-hp-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.fkh-hp-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fkh-hp-cta__content h2 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.fkh-hp-cta__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.fkh-hp-cta__plz-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
}

.fkh-hp-cta__plz-card h3 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fkh-hp-cta__plz-card > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.fkh-hp-cta__plz-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fkh-hp-cta__plz-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.fkh-hp-cta__plz-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.fkh-hp-cta__plz-input:focus {
  border-color: #FF6B00;
}

.fkh-hp-cta__plz-btn {
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  background: #FF6B00;
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.fkh-hp-cta__plz-btn:hover {
  background: #e65f00;
}

.fkh-hp-cta__plz-result {
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.fkh-hp-cta__plz-result--success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
}

.fkh-hp-cta__plz-result--info {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: #FF6B00;
}

/* --------------------------------------------------------------------------
   16. NEWSLETTER SECTION
   -------------------------------------------------------------------------- */
.fkh-hp-newsletter {
  padding: 3.5rem 0;
  background: #0D0D0D;
}

.fkh-hp-newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.fkh-hp-newsletter__inner h2 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.fkh-hp-newsletter__inner > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.fkh-hp-newsletter__form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.fkh-hp-newsletter__input {
  flex: 1;
  max-width: 320px;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.fkh-hp-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.fkh-hp-newsletter__input:focus {
  border-color: #FF6B00;
}

.fkh-hp-newsletter__btn {
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  background: #FF6B00;
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.fkh-hp-newsletter__btn:hover {
  background: #e65f00;
}

.fkh-hp-newsletter__disclaimer {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.fkh-hp-footer {
  background: #0A0A0A;
  border-top: 3px solid #FF6B00;
  padding: 3.5rem 0 0;
}

.fkh-hp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

/* Rechtliches sub-section in Unternehmen column */
.fkh-hp-footer__sub-heading {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fkh-hp-footer__brand-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}

.fkh-hp-footer__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.fkh-hp-footer__col h4 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fkh-hp-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fkh-hp-footer__col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}

.fkh-hp-footer__col ul li a:hover {
  color: #FFFFFF;
}

.fkh-hp-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.fkh-hp-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0.75;
}

.fkh-hp-footer__social a:hover {
  background: none;
  opacity: 1;
  transform: translateY(-2px);
}

.fkh-hp-footer__social a svg {
  width: 28px;
  height: 28px;
  color: #FFFFFF !important;
  fill: currentColor !important;
}

/* ── Footer cities SEO grid ──── */
.fkh-hp-footer__cities {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.fkh-hp-footer__cities h4 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fkh-hp-footer__cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fkh-hp-footer__cities-grid a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.fkh-hp-footer__cities-grid a:hover {
  color: #FF6B00 !important;
  border-color: #FF6B00;
}

.fkh-hp-footer__bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
  text-align: center;
}

.fkh-hp-footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.fkh-hp-footer__copyright {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.fkh-hp-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.fkh-hp-footer__legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.fkh-hp-footer__legal a:hover {
  color: #FFFFFF;
}

.fkh-hp-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.fkh-hp-footer__pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.6rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.6875rem;
  font-weight: 500;
}

/* New branded badge rows (Manus-style) */
.fkh-hp-footer__sub-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.fkh-hp-footer__badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fkh-hp-footer__badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fkh-hp-footer__badge-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}

.fkh-hp-footer__brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 2px 6px;
  border-radius: 4px;
}

.fkh-hp-footer__brand-pill--paypal {
  background: #003087;
}

.fkh-hp-footer__brand-pill--dhl {
  background: #FFCC00;
}

.fkh-hp-footer__brand-pill--hermes {
  background: #003B8E;
}

.fkh-hp-footer__brand-pill--dpd {
  background: #DC0032;
  padding: 2px 7px;
}

.fkh-hp-footer__address {
  width: 100%;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.6875rem;
  margin-top: 1rem;
  text-align: center;
}

.fkh-hp-footer__disclaimer {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.6875rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   18. STICKY BOTTOM CTA
   -------------------------------------------------------------------------- */
.fkh-hp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  display: none; /* shown via media query */
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.fkh-hp-sticky-cta--visible {
  transform: translateY(0);
}

.fkh-hp-sticky-cta__inner {
  display: flex;
  width: 100%;
}

.fkh-hp-sticky-cta__main {
  flex: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  background: #FF6B00;
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.fkh-hp-sticky-cta__wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  background: #25D366;
  color: #FFFFFF;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Floating WhatsApp Button */
.fkh-hp-wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 89;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.fkh-hp-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Hide floating WA button on mobile when sticky bar is visible */
@media (max-width: 768px) {
  .fkh-hp-wa-float {
    bottom: 5rem;
  }
}

/* --------------------------------------------------------------------------
   19. CITY PAGES
   -------------------------------------------------------------------------- */
.fkh-cp-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.fkh-cp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
}

.fkh-cp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.7));
  pointer-events: none;
}

.fkh-cp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.fkh-cp-hero__inner h1 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.fkh-cp-hero__inner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* City districts section */
.fkh-cp-stadtteile {
  padding: 4rem 0;
  background: #FFFFFF;
}

.fkh-cp-stadtteile__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-cp-stadtteile__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.fkh-cp-stadtteile__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  background: #F8F8F8;
  border: 1px solid #E8E8E8;
  color: #333333;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.fkh-cp-stadtteile__pill:hover {
  border-color: #FF6B00;
  background: rgba(255, 107, 0, 0.05);
  color: #FF6B00;
}

/* City sticky bar */
.fkh-cp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  padding: 0.75rem 0;
}

.fkh-cp-sticky-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fkh-cp-sticky-bar__text {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
}

.fkh-cp-sticky-bar__text span {
  color: #FF6B00;
}

.fkh-cp-sticky-bar__btns {
  display: flex;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   19b. PHP CLASS ALIASES & MISSING STYLES
   These cover class names used in the PHP output that differ from the
   original CSS naming convention.  Keeps PHP + JS untouched.
   -------------------------------------------------------------------------- */

/* Section title (PHP: fkh-hp-section-title, CSS original: fkh-hp-section-heading) */
.fkh-hp-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.fkh-hp-section-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #6B7280;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Container narrow (FAQ) */
.fkh-hp-container--narrow {
  max-width: 760px;
}

/* ── Hero badges ─────────────────────────── */
.fkh-hp-hero__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fkh-hp-hero__badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
}

.fkh-hp-hero__badges svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.95;
}

/* ── Hero phone mockup (full structure – Manus-matching white phone) ──── */
.fkh-hp-hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.fkh-hp-hero__phone-glow {
  display: none;
}

.fkh-hp-hero__phone {
  width: 300px;
  background: #1a1a1a;
  border: 10px solid #1a1a1a;
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow:
    #333 0px 0px 0px 2px,
    rgba(0, 0, 0, 0.7) 0px 32px 80px 0px,
    rgba(255, 107, 0, 0.15) 0px 0px 60px 0px;
}

.fkh-hp-hero__phone-statusbar {
  background: #f5f5f5;
  height: 30px;
  padding: 8px 0 0;
  display: flex;
  justify-content: center;
}

.fkh-hp-hero__phone-island {
  width: 90px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 20px;
}

.fkh-hp-hero__phone-screen {
  background: #f9f9f9;
  padding: 16px 16px 20px;
}

.fkh-hp-hero__phone-screen h3,
.fkh-hp-hero__phone-title {
  color: #111111;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.fkh-hp-hero__phone-rows {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.fkh-hp-hero__phone-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 8.8px 14px;
  border-bottom: 1px solid #f0f0f0;
}

.fkh-hp-hero__phone-row:last-child {
  border-bottom: none;
}

.fkh-hp-hero__phone-row span:first-child {
  color: #888888;
  font-weight: 400;
}

.fkh-hp-hero__phone-row span:last-child {
  color: #111111;
  font-weight: 600;
}

.fkh-hp-hero__phone-price {
  text-align: center;
  padding: 16px;
  background: #1a7a4a;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.fkh-hp-hero__phone-price small {
  display: block;
}

.fkh-hp-hero__phone-price small:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.04px;
}

.fkh-hp-hero__phone-price strong {
  display: block;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  margin: 0.15rem 0;
}

.fkh-hp-hero__phone-price small:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.fkh-hp-hero__phone-guarantee {
  text-align: center;
  color: #111111;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 8px 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

/* ── Pickup image alias (PHP: fkh-hp-pickup__img) ── */
.fkh-hp-pickup__img {
  overflow: hidden;
  border-radius: 1.5rem;
}

.fkh-hp-pickup__img img {
  border-radius: 1.5rem;
  object-fit: cover;
  max-height: 420px;
  width: 100%;
  display: block;
}

/* ── Pickup text alias (PHP: fkh-hp-pickup__text) ── */
.fkh-hp-pickup__text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #111111;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.fkh-hp-pickup__text p {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── Checklist (pickup & CTA sections) ──── */
.fkh-hp-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.fkh-hp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #333333;
  line-height: 1.5;
}

.fkh-hp-checklist li svg {
  flex-shrink: 0;
  color: #FF6B00;
  margin-top: 2px;
}

.fkh-hp-checklist--dark li {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Outline button ─────────────────────── */
.fkh-hp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1.5px solid #FF6B00;
  color: #FF6B00 !important;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: 'Space Grotesk', sans-serif;
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.fkh-hp-btn-outline:hover {
  background: rgba(255, 107, 0, 0.05);
}

/* ── Features top row (icon + badge) ────── */
.fkh-hp-features__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.fkh-hp-features__icon {
  font-size: 2.25rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Shipping icon & title (PHP aliases) ── */
.fkh-hp-shipping__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: #FF6B00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fkh-hp-shipping__icon svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

.fkh-hp-shipping__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.fkh-hp-shipping__card h3 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.fkh-hp-shipping__badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 107, 0, 0.15);
  color: #FF6B00;
  font-size: 0.6875rem;
  font-weight: 600;
}

/* ── Why step num & content (PHP aliases) ─ */
.fkh-hp-why__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #FF6B00;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.fkh-hp-why__step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #0A0A0A;
  margin-bottom: 0.25rem;
}

.fkh-hp-why__step p {
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.55;
}

.fkh-hp-why__step--border {
  border-bottom: 1px solid #ECECEC;
}

/* ── Reviews badge & card structure ─────── */
.fkh-hp-reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 182, 122, 0.12);
  border: 1px solid rgba(0, 182, 122, 0.25);
  margin: 0 auto 2rem;
  color: #FFFFFF;
  font-size: 0.875rem;
}

.fkh-hp-reviews__stars {
  display: flex;
  gap: 2px;
}

.fkh-hp-reviews__sep {
  color: rgba(255, 255, 255, 0.35);
}

.fkh-hp-reviews__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.fkh-hp-reviews__verified {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  color: #00B67A;
  margin-top: 0.25rem;
}

.fkh-hp-reviews__time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  white-space: nowrap;
}

.fkh-hp-reviews__card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fkh-hp-reviews__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fkh-hp-reviews__author span {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.8125rem;
}

.fkh-hp-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #00B67A !important;
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.fkh-hp-reviews__link:hover {
  opacity: 0.8;
}

/* ── FAQ category header (PHP aliases) ──── */
.fkh-hp-faq__cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fkh-hp-faq__cat-bar {
  width: 4px;
  height: 20px;
  background: #FF6B00;
  border-radius: 2px;
  flex-shrink: 0;
}

.fkh-hp-faq__cat-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0A0A0A;
}

/* ── PLZ card (PHP: fkh-hp-plz-*, JS uses these) ── */
.fkh-hp-plz-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fkh-hp-plz-card--highlight {
  border-color: #FF6B00;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.4), 0 0 60px rgba(255, 107, 0, 0.15);
  animation: fkh-plz-pulse 0.6s ease-in-out 2;
}

@keyframes fkh-plz-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(255, 107, 0, 0.4), 0 0 60px rgba(255, 107, 0, 0.15); }
  50% { box-shadow: 0 0 35px rgba(255, 107, 0, 0.6), 0 0 80px rgba(255, 107, 0, 0.25); }
}

.fkh-hp-plz-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fkh-hp-plz-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: #FF6B00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.fkh-hp-plz-card__header strong {
  display: block;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.fkh-hp-plz-card__header span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
}

.fkh-hp-plz__row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fkh-hp-plz__input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fkh-hp-plz__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.fkh-hp-plz__input:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
}

.fkh-hp-plz__btn {
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  background: #FF6B00;
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  border: 2px solid #FF6B00;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.35);
}

.fkh-hp-plz__btn:hover {
  background: #e65f00;
  border-color: #e65f00;
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.5);
}

.fkh-hp-plz__result {
  border-radius: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fkh-hp-plz__result--success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 1rem;
}

.fkh-hp-plz__result--out {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  padding: 1rem;
}

.fkh-hp-plz__result--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 1rem;
}

.fkh-hp-plz__msg {
  margin: 0;
}

.fkh-hp-plz__msg--title {
  font-weight: 700;
}

.fkh-hp-plz__result--success .fkh-hp-plz__msg--title {
  color: #25D366;
}

.fkh-hp-plz__result--out .fkh-hp-plz__msg--title {
  color: #FF6B00;
}

.fkh-hp-plz__result--error .fkh-hp-plz__msg--title,
.fkh-hp-plz__result--error .fkh-hp-plz__msg {
  color: #ef4444;
}

.fkh-hp-plz__msg--detail {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.fkh-hp-plz__hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* ── Newsletter (PHP aliases) ───────────── */
.fkh-hp-newsletter__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: #FF6B00;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.fkh-hp-newsletter__benefits {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.fkh-hp-newsletter__benefits span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.fkh-hp-newsletter__submit {
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  background: #FF6B00;
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  border: 2px solid #FF6B00;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.35);
}

.fkh-hp-newsletter__submit:hover {
  background: #e65f00;
  border-color: #e65f00;
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.5);
}

.fkh-hp-newsletter__note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* ── Footer brand & columns (PHP aliases) ─ */
.fkh-hp-footer__brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}

.fkh-hp-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.fkh-hp-footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  transition: color 0.2s;
}

.fkh-hp-footer__contact a:hover {
  color: #FFFFFF;
}

.fkh-hp-footer__grid > div h4 {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fkh-hp-footer__grid > div a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  padding: 0.2rem 0;
  transition: color 0.2s;
}

.fkh-hp-footer__grid > div a:hover {
  color: #FFFFFF;
}

/* ── Mobile menu (PHP aliases) ──────────── */
.fkh-hp-mobile-menu__header {
  position: absolute;
  /* v9.31.0: Offset for iPhones with Dynamic Island / notch */
  top: env(safe-area-inset-top, 0px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.fkh-hp-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  /* v9.31.0: Clear absolute header (80px) + safe area for Dynamic Island */
  padding-top: calc(80px + env(safe-area-inset-top, 0px));
  justify-content: center;
}

.fkh-hp-mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fkh-hp-mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 80%;
  max-width: 300px;
  margin-top: 2rem;
  align-self: center; /* v9.31.1: center CTAs horizontally */
}

.fkh-hp-mobile-menu__ctas a {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── City pages (PHP aliases) ───────────── */
.fkh-cp-stadtteile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.fkh-cp-stadtteil {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  background: #F8F8F8;
  border: 1px solid #E8E8E8;
  color: #333333;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.fkh-cp-stadtteil:hover {
  border-color: #FF6B00;
  color: #FF6B00;
}

/* ── Funnel font overrides ──────────────── */
.fkh-hp-funnel-wrap .funnel-section,
.fkh-hp-funnel-wrap .funnel-section * {
  font-family: 'DM Sans', sans-serif !important;
}

.fkh-hp-funnel-wrap .funnel-section h1,
.fkh-hp-funnel-wrap .funnel-section h2,
.fkh-hp-funnel-wrap .funnel-section h3,
.fkh-hp-funnel-wrap .funnel-section h4,
.fkh-hp-funnel-wrap .funnel-section .step-title,
.fkh-hp-funnel-wrap .funnel-section .category-title {
  font-family: 'Space Grotesk', sans-serif !important;
}

/* ── Funnel "Weiter" button enhancement ──── */
.fkh-hp-funnel-wrap .fkh-btn-next {
  background: #FF6B00 !important;
  color: #FFFFFF !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  padding: 18px 44px !important;
  border-radius: 9999px !important;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.5), 0 3px 8px rgba(255, 107, 0, 0.3) !important;
  border: none !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  min-width: 200px !important;
}
.fkh-hp-funnel-wrap .fkh-btn-next:hover:not(:disabled) {
  background: #e05800 !important;
  box-shadow: 0 10px 32px rgba(255, 107, 0, 0.6), 0 5px 12px rgba(255, 107, 0, 0.4) !important;
  transform: translateY(-2px);
}
.fkh-hp-funnel-wrap .fkh-btn-next:disabled {
  background: #e5e7eb !important;
  color: #9ca3af !important;
  box-shadow: none !important;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Tablet / small desktop */
@media (max-width: 1024px) {
  .fkh-hp-hero__grid {
    grid-template-columns: 1fr;
  }

  .fkh-hp-hero__mockup {
    display: none;
  }

  .fkh-hp-pickup__grid,
  .fkh-hp-shipping__grid,
  .fkh-hp-why__grid,
  .fkh-hp-cta__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .fkh-hp-categories__card {
    flex: 0 1 calc(30% - 1rem);
  }

  .fkh-hp-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fkh-hp-features__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fkh-hp-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .fkh-hp-hero__content h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
  }

  .fkh-hp-shipping__image,
  .fkh-hp-why__image,
  .fkh-hp-pickup__image,
  .fkh-hp-pickup__img img {
    max-height: 340px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .fkh-hp-sticky-cta {
    display: flex;
  }

  .fkh-hp-hero__inner {
    padding: 7rem 1.5rem 4rem;
  }

  .fkh-hp-hero {
    min-height: auto;
  }

  .fkh-hp-features__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .fkh-hp-hero__btns {
    flex-direction: column;
  }

  .fkh-hp-btn-orange,
  .fkh-hp-btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .fkh-hp-cta__plz-form,
  .fkh-hp-plz__row {
    flex-direction: column;
  }

  .fkh-hp-newsletter__submit {
    width: 100%;
  }

  .fkh-hp-newsletter__form {
    flex-direction: column;
    align-items: center;
  }

  .fkh-hp-newsletter__input {
    max-width: none;
    width: 100%;
  }

  .fkh-hp-newsletter__btn {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .fkh-hp-header__nav {
    display: none;
  }

  .fkh-hp-header__btns {
    display: none;
  }

  .fkh-hp-categories__card {
    flex: 0 1 calc(45% - 0.5rem);
  }

  .fkh-hp-reviews__grid {
    grid-template-columns: 1fr;
  }

  .fkh-hp-footer__grid {
    grid-template-columns: 1fr;
  }

  .fkh-hp-hero__content h1 {
    font-size: 2.25rem;
  }

  .fkh-hp-hero__subtitle {
    font-size: 1rem;
  }

  .fkh-hp-section-heading {
    font-size: 1.5rem;
  }

  .fkh-hp-hero__trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  .fkh-hp-ugc__card {
    width: 170px;
  }

  .fkh-hp-hero__badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .fkh-hp-why__step-num,
  .fkh-hp-why__num {
    font-size: 2rem;
    width: 40px;
  }

  .fkh-hp-faq__question {
    font-size: 0.875rem;
    padding: 1rem 1.25rem;
  }

  .fkh-hp-faq__answer {
    padding: 0 1.25rem 0;
  }

  .fkh-hp-faq__item--open .fkh-hp-faq__answer {
    padding: 0 1.25rem 1rem;
  }

  .fkh-cp-sticky-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .fkh-hp-footer__bottom-row {
    flex-direction: column;
    text-align: center;
  }

  .fkh-hp-footer__legal {
    justify-content: center;
  }

  .fkh-hp-pickup__content h2,
  .fkh-hp-pickup__text h2,
  .fkh-hp-shipping__content h2,
  .fkh-hp-why__content h2,
  .fkh-hp-cta__content h2,
  .fkh-hp-section-title {
    font-size: 1.5rem;
  }

  .fkh-hp-plz__row {
    flex-direction: column;
  }

  .fkh-hp-newsletter__submit {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   21. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fkh-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes fkh-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fkh-fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility: fade-in on scroll (JS toggles this class) */
.fkh-hp-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fkh-hp-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility: pulse animation for live indicators */
.fkh-hp-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  animation: fkh-pulse 2s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   22. UTILITY HELPERS
   -------------------------------------------------------------------------- */
.fkh-hp-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;
}

.fkh-hp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fkh-hp-text-center {
  text-align: center;
}

/* Padding helper for sections that need extra bottom space for sticky CTA on mobile */
@media (max-width: 768px) {
  .fkh-hp-footer {
    padding-bottom: 4rem;
  }
}

/* --------------------------------------------------------------------------
   23. HILFE / ÜBER UNS PAGE OVERRIDES
   -------------------------------------------------------------------------- */

/* Hilfe contact cards: 3-col on desktop, 1-col on mobile */
@media (max-width: 768px) {
  .fkh-hp-features__grid[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fkh-hp-features__grid[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* --------------------------------------------------------------------------
   24. LEGAL PAGES (Impressum, AGB, Datenschutz) — fkh-blank.php
   -------------------------------------------------------------------------- */

/* Override block theme resets that interfere with our header on legal pages */
.fkh-blank-template .fkh-hp-header {
  position: sticky !important;
  top: 0 !important;
  background: rgba(10, 10, 10, 0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 107, 0, 0.2) !important;
  z-index: 100 !important;
}

.fkh-blank-template .fkh-hp-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.fkh-blank-template .fkh-hp-header__logo img {
  height: 32px !important;
  width: auto !important;
  object-fit: contain;
}

.fkh-blank-template .fkh-hp-header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.fkh-blank-template .fkh-hp-header__nav a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: color 0.2s ease;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.fkh-blank-template .fkh-hp-header__nav a:hover {
  color: #FF6B00 !important;
}

.fkh-blank-template .fkh-hp-header__btns {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fkh-blank-template .fkh-hp-btn--track,
.fkh-blank-template .fkh-hp-btn--wa,
.fkh-blank-template .fkh-hp-btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none !important;
}

.fkh-blank-template .fkh-hp-btn--track {
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: #FFFFFF !important;
  font-weight: 700;
}

.fkh-blank-template .fkh-hp-btn--wa {
  background: #25D366;
  border: 1.5px solid #25D366;
  color: #FFFFFF !important;
}

.fkh-blank-template .fkh-hp-btn--cta {
  background: #FF6B00;
  border: 1.5px solid #FF6B00;
  color: #FFFFFF !important;
  font-weight: 700;
}

.fkh-blank-template .fkh-hp-header__mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  color: #FFFFFF !important;
  font-size: 1.5rem;
  cursor: pointer;
  background: none !important;
  border: none !important;
  padding: 0;
  margin-left: 0.5rem;
}

/* Force white background on legal pages (block theme sets dark bg) */
body.fkh-blank-template {
  background: #FFFFFF !important;
  color: #222 !important;
}

/* Legal page content area */
.fkh-legal-content {
  max-width: 800px;
  margin: 40px auto 80px;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
  color: #222 !important;
  line-height: 1.7;
  font-size: 0.95rem;
  background: #FFFFFF;
}

.fkh-legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #0A0A0A !important;
}

.fkh-legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: #0A0A0A !important;
}

.fkh-legal-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: #0A0A0A !important;
}

.fkh-legal-content p,
.fkh-legal-content li,
.fkh-legal-content strong {
  color: #222 !important;
}

.fkh-legal-content p {
  margin: 0 0 1rem;
}

.fkh-legal-content a {
  color: #FF6B00;
  text-decoration: none;
}

.fkh-legal-content a:hover {
  text-decoration: underline;
}

.fkh-legal-content ul,
.fkh-legal-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.fkh-legal-content li {
  margin-bottom: 0.4rem;
}

/* Legal page footer */
.fkh-legal-footer {
  background: #0A0A0A;
  color: #999;
  padding: 40px 24px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.8;
}

.fkh-legal-footer__inner {
  max-width: 800px;
  margin: 0 auto;
}

.fkh-legal-footer__inner p {
  margin: 0 0 4px;
  color: #999;
}

.fkh-legal-footer__brand {
  color: #FF6B00 !important;
  text-decoration: none;
  font-weight: 600;
}

.fkh-legal-footer__links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.fkh-legal-footer__links a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.fkh-legal-footer__links a:hover {
  color: #FF6B00;
}

/* Hide nav/btns on mobile, show burger */
@media (max-width: 640px) {
  .fkh-blank-template .fkh-hp-header__nav,
  .fkh-blank-template .fkh-hp-header__btns {
    display: none !important;
  }
}

/* Hide burger on desktop (nav/btns visible) */
@media (min-width: 641px) {
  .fkh-blank-template .fkh-hp-header__mobile-btn {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   25. SINGLE BLOG POST (v9.30.0)
   -------------------------------------------------------------------------- */

/* Force white background on single blog posts */
body.fkh-single-post {
  background: #FFFFFF !important;
}

/* Blog post content styling */
.fkh-blog-single__content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: #0A0A0A;
}

.fkh-blog-single__content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: #0A0A0A;
}

.fkh-blog-single__content p {
  margin: 0 0 1.2rem;
  color: #333;
}

.fkh-blog-single__content a {
  color: #FF6B00;
  text-decoration: none;
}

.fkh-blog-single__content a:hover {
  text-decoration: underline;
}

.fkh-blog-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}

.fkh-blog-single__content ul,
.fkh-blog-single__content ol {
  margin: 0 0 1.2rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.fkh-blog-single__content ol {
  list-style: decimal;
}

.fkh-blog-single__content li {
  margin-bottom: 0.4rem;
  color: #333;
}

.fkh-blog-single__content blockquote {
  border-left: 4px solid #FF6B00;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #f9f9f9;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #555;
}

.fkh-blog-single__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.fkh-blog-single__content th,
.fkh-blog-single__content td {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.fkh-blog-single__content th {
  background: #f3f4f6;
  font-weight: 600;
}

/* Blog shortcode styles within blog posts */
.fkh-blog-single__content .fkh-cta-box {
  background: linear-gradient(135deg, #0A0A0A, #1a1a1a);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

/* Blog overview card hover */
.fkh-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

@media (max-width: 640px) {
  .fkh-blog-single__hero h1 {
    font-size: 1.6rem !important;
  }
  .fkh-blog-single__content {
    padding: 1.5rem 1rem 3rem !important;
  }
}
