/*
Theme Name: FunkyPrints
Theme URI: https://funkyprints.de
Description: Custom WooCommerce theme for FunkyPrints - bunte, verspielte Designs für jeden Anlass
Author: Torben Affelski Onlinehandel
Author URI: https://funkyprints.de
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: funkyprints
Tags: e-commerce, woocommerce, custom
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --fp-orange: #e8a820;
  --fp-orange-dark: #c48a10;
  --fp-yellow: #f5c842;
  --fp-teal: #06d6a0;
  --fp-purple: #8b5cf6;
  --fp-blue: #3b82f6;
  --fp-pink: #ec4899;
  --fp-ink: #1a1a1a;
  --fp-bg: #ffffff;
  --fp-paper: #f9f5f0;
  --fp-mid: #555555;
  --fp-rule: #e5e0d8;
  --fp-nav-h: 72px;
  --fp-radius: 12px;
  --fp-font: 'Nunito', 'Rounded Mplus 1c', system-ui, sans-serif;
  --fp-display: 'Fredoka One', 'Nunito', system-ui, sans-serif;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fp-font);
  background: var(--fp-bg);
  color: var(--fp-ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fp-orange); text-decoration: none; transition: color .2s; }
a:hover { color: #c48a10; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fp-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fp-ink);
}
h1 { font-size: clamp(36px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: 22px; }
p { color: var(--fp-mid); line-height: 1.7; margin-bottom: 16px; }

/* ============================================================
   NAVIGATION
============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--fp-bg);
  border-bottom: 2px solid var(--fp-rule);
  height: var(--fp-nav-h);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  font-family: var(--fp-display);
  font-size: 28px;
  color: var(--fp-ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--fp-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.site-logo span { color: var(--fp-orange); }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-mid);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .2s, color .2s;
  text-decoration: none;
  letter-spacing: .5px;
}
.main-nav a:hover { background: var(--fp-paper); color: var(--fp-ink); }
.main-nav a.active { background: var(--fp-orange); color: white; }

.nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--fp-ink);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.nav-cart:hover { background: var(--fp-orange); color: white; }
.cart-count {
  background: var(--fp-orange);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 24px;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--fp-ink);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--fp-display);
  font-size: 36px;
  color: white;
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--fp-yellow); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* ============================================================
   HERO
============================================================ */
.fp-hero {
  background: var(--fp-ink);
  min-height: calc(100vh - var(--fp-nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.fp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,190,11,.15);
  border: 1px solid rgba(255,190,11,.3);
  color: var(--fp-yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp .7s .2s both;
}
.hero-h1 {
  font-size: clamp(52px, 7vw, 96px);
  color: white;
  line-height: .9;
  letter-spacing: -1px;
  animation: fadeUp .7s .35s both;
}
.hero-h1 .line-orange { color: var(--fp-orange); display: block; }
.hero-h1 .line-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.25);
  color: transparent;
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  max-width: 440px;
  margin-top: 24px;
  font-weight: 400;
  line-height: 1.65;
  animation: fadeUp .7s .5s both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeUp .7s .65s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fp-orange);
  color: white;
  font-family: var(--fp-display);
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 400;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #c48a10; transform: translateY(-2px); color: white; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-family: var(--fp-display);
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 400;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: border-color .2s, color .2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: white; color: white; }

/* hero right niche stack */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 80px 80px 80px 24px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-niche {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  border-radius: var(--fp-radius);
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.hero-niche:hover { background: rgba(255,255,255,.09); transform: translateX(6px); }
.hn-emoji { font-size: 32px; line-height: 1; }
.hn-info { flex: 1; }
.hn-title {
  font-family: var(--fp-display);
  font-size: 18px;
  color: rgba(255,255,255,.85);
  display: block;
}
.hn-sub { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: 1px; }
.hn-arrow { color: rgba(255,255,255,.2); font-size: 18px; }
.hero-niche:hover .hn-arrow { color: var(--fp-orange); }

/* ============================================================
   TICKER
============================================================ */
.fp-ticker {
  background: var(--fp-orange);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-item {
  font-family: var(--fp-display);
  font-size: 16px;
  letter-spacing: 3px;
  color: white;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,.4); border-radius: 50%; }

/* ============================================================
   SECTIONS
============================================================ */
.fp-section { padding: 96px 32px; }
.fp-container { max-width: 1200px; margin: 0 auto; }
.section-eye {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fp-orange);
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--fp-mid); max-width: 520px; font-weight: 400; margin-bottom: 48px; }

/* ============================================================
   NISCHEN GRID
============================================================ */
.nischen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.nische-card {
  background: white;
  border: 2px solid var(--fp-rule);
  border-radius: var(--fp-radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  display: block;
}
.nische-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-color: var(--fp-orange);
}
.nc-top {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}
.nc-1 { background: linear-gradient(135deg, #1a2e20, #2d5a3d); }
.nc-2 { background: linear-gradient(135deg, #2e1a2e, #5a2d5a); }
.nc-3 { background: linear-gradient(135deg, #1a1a2e, #2d2d5a); }
.nc-4 { background: linear-gradient(135deg, #2e1a1a, #5a2d2d); }
.nc-5 { background: linear-gradient(135deg, #2e2a1a, #5a4d2d); }
.nc-body { padding: 18px; }
.nc-body h3 {
  font-size: 16px;
  color: var(--fp-ink);
  margin-bottom: 4px;
}
.nc-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  background: var(--fp-orange);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 800;
  margin-bottom: 8px;
}
.nc-body p { font-size: 12px; color: var(--fp-mid); margin: 0; line-height: 1.5; }

/* ============================================================
   HOW IT WORKS
============================================================ */
#how-it-works { background: var(--fp-ink); }
#how-it-works .section-eye { color: var(--fp-yellow); }
#how-it-works .section-title { color: white; }
#how-it-works .section-sub { color: rgba(255,255,255,.45); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--fp-radius);
  padding: 32px 24px;
  position: relative;
  transition: background .2s;
}
.step-card:hover { background: rgba(255,255,255,.08); }
.step-num {
  font-family: var(--fp-display);
  font-size: 64px;
  color: rgba(255,255,255,.05);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.step-card h3 { font-size: 20px; color: white; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; margin: 0; }
.step-arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(255,255,255,.12);
  z-index: 1;
}

/* ============================================================
   FEATURED PRODUCTS (WooCommerce)
============================================================ */
#featured-products { background: var(--fp-paper); }
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.woocommerce ul.products li.product {
  background: white;
  border: 2px solid var(--fp-rule);
  border-radius: var(--fp-radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  border-color: var(--fp-orange);
}
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--fp-display) !important;
  font-size: 16px !important;
  color: var(--fp-ink) !important;
  padding: 12px 16px 4px !important;
}
.woocommerce ul.products li.product .price {
  color: var(--fp-orange) !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  padding: 0 16px 12px !important;
  display: block !important;
}
.woocommerce ul.products li.product .button {
  display: block !important;
  margin: 0 16px 16px !important;
  background: var(--fp-ink) !important;
  color: white !important;
  border: none !important;
  padding: 10px !important;
  border-radius: 100px !important;
  font-family: var(--fp-display) !important;
  font-size: 14px !important;
  text-align: center !important;
  transition: background .2s !important;
  cursor: pointer !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--fp-orange) !important; }

/* ============================================================
   REVIEWS
============================================================ */
#reviews { background: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.review-card {
  background: var(--fp-paper);
  border: 2px solid var(--fp-rule);
  border-radius: var(--fp-radius);
  padding: 28px;
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--fp-orange); }
.review-stars { font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; color: var(--fp-yellow); }
.review-card blockquote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--fp-mid);
  font-style: italic;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.review-author strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 2px; }
.review-author span { font-size: 12px; color: var(--fp-rule); letter-spacing: .5px; }

/* ============================================================
   CTA BAND
============================================================ */
#cta-band {
  background: var(--fp-orange);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: 'FUNKY';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fp-display);
  font-size: 240px;
  color: rgba(255,255,255,.08);
  white-space: nowrap;
  pointer-events: none;
}
#cta-band h2 { font-size: clamp(40px, 6vw, 72px); color: white; margin-bottom: 16px; position: relative; }
#cta-band p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 440px; margin: 0 auto 36px; position: relative; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--fp-orange);
  font-family: var(--fp-display);
  font-size: 18px;
  padding: 18px 48px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 400;
  transition: transform .2s;
  position: relative;
}
.btn-white:hover { transform: translateY(-3px); color: var(--fp-orange); }

/* ============================================================
   CONTACT
============================================================ */
#kontakt { background: var(--fp-paper); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; color: var(--fp-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  background: white;
  border: 2px solid var(--fp-rule);
  border-radius: var(--fp-radius);
  padding: 12px 16px;
  font-family: var(--fp-font);
  font-size: 15px;
  color: var(--fp-ink);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--fp-orange); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-send {
  background: var(--fp-orange);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 100px;
  font-family: var(--fp-display);
  font-size: 18px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 6px;
}
.btn-send:hover { background: #c48a10; transform: translateY(-2px); }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-block h4 { font-size: 20px; margin-bottom: 6px; }
.ci-block p { font-size: 14px; color: var(--fp-mid); line-height: 1.65; margin: 0; }
.ci-promise { background: white; border: 2px solid var(--fp-rule); border-radius: var(--fp-radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.cp-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fp-mid); }
.cp-item::before { content: '✓'; color: var(--fp-teal); font-weight: 800; flex-shrink: 0; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--fp-ink);
  padding: 56px 32px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; margin: 0; }
.footer-col h5 {
  font-family: var(--fp-display);
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--fp-orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-legal a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-legal a:hover { color: var(--fp-orange); }
.footer-nichen { display: flex; gap: 8px; flex-wrap: wrap; }
.fn-badge {
  font-size: 10px;
  letter-spacing: 1px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.4);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================================================
   WOOCOMMERCE SINGLE PRODUCT
============================================================ */
.woocommerce div.product { max-width: 1200px; margin: 48px auto; padding: 0 32px; }
.woocommerce div.product .product_title { font-size: 40px; margin-bottom: 12px; }
.woocommerce div.product p.price { font-size: 32px; color: var(--fp-orange) !important; font-weight: 800; margin-bottom: 20px; }
.woocommerce div.product .single_add_to_cart_button {
  background: var(--fp-orange) !important;
  color: white !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: var(--fp-display) !important;
  font-size: 18px !important;
  padding: 16px 40px !important;
  transition: background .2s !important;
}
.woocommerce div.product .single_add_to_cart_button:hover { background: #c48a10 !important; }

/* ============================================================
   CART & CHECKOUT
============================================================ */
.woocommerce-cart .cart_totals,
.woocommerce-checkout .woocommerce-checkout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
}
.woocommerce .button.checkout-button,
.woocommerce #payment #place_order {
  background: var(--fp-orange) !important;
  color: white !important;
  border-radius: 100px !important;
  font-family: var(--fp-display) !important;
  font-size: 18px !important;
  border: none !important;
  padding: 16px 40px !important;
}

/* ============================================================
   COOKIE BANNER
============================================================ */
#fp-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--fp-orange);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 999;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s;
}
#fp-cookie.show { transform: none; }
#fp-cookie p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 560px; margin: 0; }
#fp-cookie p a { color: var(--fp-yellow); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-ok {
  background: var(--fp-orange);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--fp-font);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.cookie-no {
  background: transparent;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--fp-font);
  font-size: 12px;
  cursor: pointer;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 1024px) {
  .nischen-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .fp-hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 48px 24px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { padding: 0 20px; }
  .fp-section { padding: 72px 20px; }
  .nischen-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .reviews-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #fp-cookie { padding: 16px 20px; }
}
@media (max-width: 480px) {
  .nischen-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* Logo image */
.site-logo img { height: 52px; width: auto; display: block; }
.site-logo .custom-logo-link img { height: 52px; width: auto; }
#site-footer .site-logo img { height: 40px; filter: brightness(0) invert(1); }

/* ============================================================
   CLEAN ICON SYSTEM (no emoji)
============================================================ */
.icon-cart::before { content: ''; display: inline-block; width: 18px; height: 18px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ── LEGAL PAGES ── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 64px 32px 96px; }
.legal-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--fp-orange); display: block; margin-bottom: 12px; font-weight: 800; }
.legal-page h1 { font-size: clamp(40px, 6vw, 64px); margin-bottom: 10px; }
.legal-meta { font-size: 13px; color: var(--fp-rule); padding-bottom: 32px; border-bottom: 1px solid var(--fp-rule); margin-bottom: 40px; }
.legal-body h2 { font-size: 24px; margin: 40px 0 12px; padding-top: 28px; border-top: 1px solid var(--fp-rule); color: var(--fp-ink); }
.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-body h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; font-family: var(--fp-font); }
.legal-body p { font-size: 15px; line-height: 1.75; color: var(--fp-mid); margin-bottom: 12px; }
.legal-body ul, .legal-body ol { margin: 10px 0 14px 22px; }
.legal-body li { font-size: 15px; line-height: 1.75; color: var(--fp-mid); margin-bottom: 5px; }
.legal-body a { color: var(--fp-orange); }
.legal-body strong { color: var(--fp-ink); font-weight: 700; }
.info-box { background: var(--fp-paper); border-left: 3px solid var(--fp-orange); padding: 16px 20px; margin: 18px 0; font-size: 14px; color: var(--fp-mid); line-height: 1.65; }
.warn-box { background: #fff8f0; border-left: 3px solid var(--fp-orange); padding: 16px 20px; margin: 18px 0; font-size: 14px; color: var(--fp-mid); line-height: 1.65; }
.widerruf-form { background: var(--fp-paper); border: 1px solid var(--fp-rule); padding: 24px; margin: 20px 0; font-size: 14px; color: var(--fp-mid); line-height: 1.85; }

/* ── VERSAND PAGE ── */
.versand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 32px 0; }
.versand-card { background: white; border: 1px solid var(--fp-rule); border-radius: var(--fp-radius); padding: 24px; }
.versand-card h3 { font-size: 18px; margin-bottom: 8px; }
.versand-card p { font-size: 14px; color: var(--fp-mid); margin: 0; line-height: 1.6; }
.versand-highlight { font-family: var(--fp-display); font-size: 32px; color: var(--fp-orange); display: block; margin-bottom: 4px; }

/* ── ÜBER UNS ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin: 48px 0; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.value-card { background: var(--fp-paper); border-radius: var(--fp-radius); padding: 24px; border-left: 3px solid var(--fp-orange); }
.value-card h4 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--fp-mid); margin: 0; }

/* Clean nav - no emojis */
.main-nav a.nische-dogs::before,
.main-nav a.nische-wedding::before,
.main-nav a.nische-camping::before,
.main-nav a.nische-halloween::before,
.main-nav a.nische-teachers::before { content: none; }

/* Hero - clean */
.hero-badge { background: rgba(232,168,32,.12); border: 1px solid rgba(232,168,32,.25); color: var(--fp-orange); }

/* Nischen cards - no emoji top, clean gradient */
.nc-top { font-size: 0; /* hide emoji */ position: relative; }
.nc-top::after { content: ''; position: absolute; inset: 0; }

/* Step cards clean */
.step-icon { display: none; }
.step-num { font-family: var(--fp-display); font-size: 48px; color: rgba(232,168,32,.15); line-height: 1; margin-bottom: 12px; }

/* Clean hero niche - no arrows as emoji */
.hn-arrow { font-size: 14px; color: rgba(255,255,255,.2); font-family: var(--fp-font); }

@media(max-width: 768px) {
  .versand-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .legal-page { padding: 48px 20px 80px; }
}
