

/* CSS VARIABLES - Bowtie Mail Club Theme */
:root {
  --color-primary: #E5739A;       /* sattes Rosa */
  --color-secondary: #F2B6C9;     /* helles Rosa */
  --color-accent: #C04875;        /* tiefes Beerenrosa */
  --color-bg: #FFF1F4;            /* ganz helles Weiß-Rosa */
  --color-bg-soft: #FCE4EB;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-wordmark: 'Fredoka', 'Inter', sans-serif;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; width: 100%; }

body { font-family: var(--font-body); background: var(--color-bg); color: #1a1a1a; line-height: 1.6; overflow-x: hidden; width: 100%; }

/* bowtie Wortmarke */
.wordmark {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  text-transform: lowercase;
  display: inline-block;
}
@media (max-width: 1024px) { body { } }
.App { min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ACCESSIBILITY */
.skip-to-content-link { position: absolute; top: -40px; left: 6px; background: var(--color-primary); color: white; padding: 8px; text-decoration: none; border-radius: 4px; z-index: 1000; }
.skip-to-content-link:focus { top: 6px; }
.visually-hidden { position: absolute !important; overflow: hidden; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0 0 0 0); word-wrap: normal !important; }

/* BACK BUTTON */
.back-button { position: fixed; top: 120px; left: 20px; z-index: 999; background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; color: var(--color-primary); cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); }
.back-button:hover { background: rgba(255, 255, 255, 0.55); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); border-color: rgba(255, 255, 255, 0.85); }
.back-button svg { width: 24px !important; height: 24px !important; min-width: 24px !important; min-height: 24px !important; max-width: 24px !important; max-height: 24px !important; flex-shrink: 0; }

/* STICKY HEADER */
.sticky-header { position: fixed; top: -100px; left: 0; right: 0; background: rgba(255, 255, 255, 0.35); border-bottom: 1.5px solid rgba(255, 255, 255, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all 0.4s ease; z-index: 1000; padding: 15px 0; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.sticky-header.visible { top: 0; transform: translateY(0); }
.header-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 600; color: var(--color-primary); text-decoration: none; transition: all 0.3s ease; }
.logo:hover { transform: scale(1.05); }
.header-actions { display: flex; align-items: center; gap: 15px; }

/* Header nav links */
.header-nav { display: flex; align-items: center; gap: 10px; margin-right: 8px; }
.header-nav a { color: var(--color-primary); text-decoration: none; padding: 8px 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); font-weight: 500; }
.header-nav a:hover { background: rgba(255, 255, 255, 0.28); }

.cart-icon { position: relative; cursor: pointer; transition: all 0.3s ease; text-decoration: none; color: inherit; }
.cart-icon:hover { transform: scale(1.1); }
.cart-icon.wiggle { animation: cartWiggle 0.5s ease; }
@keyframes cartWiggle { 0% { transform: rotate(0);} 25% { transform: rotate(-8deg);} 50% { transform: rotate(8deg);} 75% { transform: rotate(-4deg);} 100% { transform: rotate(0);} }
.cart-count { position: absolute; top: -8px; right: -8px; background: #ef4444; color: white; border-radius: 50%; width: 20px; height: 20px; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; animation: pulse 0.3s ease; }
@keyframes pulse { 0% { transform: scale(0.8);} 50% { transform: scale(1.2);} 100% { transform: scale(1);} }

/* HERO SECTION */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.bubble-canvas { position: absolute; top: 0; left: 0; z-index: -1; pointer-events: none; }
.hero-content { text-align: center; z-index: 1; }
.glass-text { font-size: clamp(3rem, 8vw, 6rem); font-weight: 600; background: linear-gradient(135deg, rgba(192, 72, 117, 0.85), rgba(192, 72, 117, 0.4)); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; backdrop-filter: blur(4px); text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); margin-bottom: 10px; animation: fadeInUp 1s ease; }
/* Solid teal variant for hero title (no gradient) */
.hero-solid { background: none !important; -webkit-text-fill-color: #C04875 !important; color: #C04875 !important; }

.subtitle { font-size: 1.1rem; opacity: 0.9; animation: fadeInUp 1s ease 0.4s both; font-weight: 400; color: #C04875; margin-top: 0; max-width: 600px; line-height: 1.5; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }

/* STEPS SECTION */
.steps { padding: 120px 0; position: relative; z-index: 2; }
.steps .container { display: flex; flex-direction: column; gap: 30px; max-width: 800px; margin: 0 auto; }
.step { background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border-radius: 20px; padding: 40px 30px; text-align: center; transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; width: 100%; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); }
.step:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18); background: rgba(255, 255, 255, 0.55); border-color: rgba(255, 255, 255, 0.85); }
.step-number { width: 60px; height: 60px; border-radius: 50%; background: #E5739A; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 600; margin: 0 auto 20px; box-shadow: 0 8px 25px rgba(229, 115, 154, 0.3); }
.step h3 { font-size: 1.5rem; margin-bottom: 15px; font-weight: 600; color: var(--color-primary); }
.step p { font-size: 1rem; opacity: 0.85; color: #2a2a2a; }

/* SCROLL REVEAL */
.scroll-reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal[data-delay="200"].visible { transition-delay: 0.2s; }
.scroll-reveal[data-delay="400"].visible { transition-delay: 0.4s; }

/* Smoother reveal easing for USP items only (same duration) */
.usp .scroll-reveal { transition: all 1s cubic-bezier(0.22, 1, 0.36, 1); }


/* USP SECTION */
.usp { padding: 80px 0; position: relative; z-index: 2; }
.usp .container { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.usp-item { display: flex; align-items: center; gap: 15px; padding: 25px 30px; background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); border-radius: 15px; transition: all 0.3s ease; width: 100%; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }
.usp-item:hover { background: rgba(255, 255, 255, 0.55); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); border-color: rgba(255, 255, 255, 0.85); }
.checkmark { width: 32px; height: 32px; border-radius: 50%; background: #16a34a; color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; flex-shrink: 0; font-size: 18px; box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3); }
.usp-item p { font-size: 1.1rem; font-weight: 500; color: #1a1a1a; }

/* PRODUCT SECTION (Landing) */
.product-section { padding: 60px 0; position: relative; z-index: 2; }
.product-display { display: flex; flex-direction: column; gap: 40px; align-items: center; max-width: 800px; margin: 0 auto; text-align: center; }
.product-image-container { text-align: center; width: 100%; max-width: 500px; }
.product-image { max-width: 100%; height: auto; border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); }
.product-info { width: 100%; background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); border-radius: 20px; padding: 40px 30px; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); }
.product-info:hover { background: rgba(255, 255, 255, 0.55); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); border-color: rgba(255, 255, 255, 0.85); }
.product-info h3 { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 20px; font-weight: 600; }
.product-info p { font-size: 1.05rem; line-height: 1.6; margin-bottom: 25px; color: #2a2a2a; }
.product-price { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; margin: 20px 0; }
.product-price .price-row { display: flex; align-items: center; gap: 15px; }
.price { font-size: 2.5rem; font-weight: 600; color: #C04875; }
.price-note { color: #666; font-size: 1rem; }
.product-features { margin: 30px 0; text-align: left; border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 25px; }
.product-features h3, .product-features h4 { color: var(--color-primary); margin-bottom: 15px; font-weight: 600; text-align: left; }
.product-features ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.product-features li { padding: 8px 0; position: relative; padding-left: 25px; }
.product-features li:before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 600; }

/* CTA */
.cta { padding: 60px 0; text-align: center; position: relative; z-index: 2; }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; text-align: center; background: #E5739A; color: #ffffff; padding: 20px 50px; border-radius: 50px; font-size: 1.3rem; font-weight: 600; text-decoration: none; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 10px 30px rgba(229, 115, 154, 0.3); border: none; cursor: pointer; }

/* Product Order Button - kompakter Button innerhalb der Produktbeschreibung */
.product-cta { text-align: center; margin: 20px 0 35px 0; }
.product-order-btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 12px 24px; 
  background: #E5739A; 
  color: #ffffff; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 1rem; 
  border-radius: 25px; 
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(229, 115, 154, 0.12); 
}
.product-order-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(229, 115, 154, 0.25); 
}

.cta-btn:hover { transform: scale(1.05) translateY(-6px); box-shadow: 0 20px 50px rgba(229, 115, 154, 0.4); }
.cta-btn.alt { padding: 12px 22px; font-size: 0.95rem; border-radius: 40px; }


/* Product page buttons (less dominant) */
.product-summary .cta-btn, .product-actions .cta-btn {
  padding: 12px 22px;
  font-size: 0.98rem;
  border-radius: 36px;
  box-shadow: 0 4px 14px rgba(229, 115, 154, 0.18);
}
.product-summary .cta-btn:hover, .product-actions .cta-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 22px rgba(229, 115, 154, 0.26);
}

/* Stripe button styling */
.stripe-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

/* Payment methods styling */
.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.payment-icon {
  background: transparent;
  border: none;
  border-radius: 4px;
  padding: 6px 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 28px;
}

.payment-icon:hover {
  background: transparent;
  transform: translateY(-1px);
}

/* Cart page buttons (less dominant) */
.cart-summary .cta-btn, .empty-cart .cta-btn {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 34px;
  box-shadow: 0 3px 12px rgba(229, 115, 154, 0.16);
}
.empty-cart .cta-btn { min-height: 38px; }

/* Teal button for FAQ links */
.btn-teal { display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 25px; background: #C04875; color: #fff !important; text-decoration: none; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-teal:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192, 72, 117, 0.3); }

/* FAQ */
.faq-section-main { padding: 80px 0; position: relative; z-index: 2; }
.faq-section-main h2 { text-align: center; font-size: 2.5rem; color: var(--color-primary); margin-bottom: 50px; font-weight: 600; }
.faq-section-main .container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 20px; background: rgba(255, 255, 255, 0.49); border-radius: 15px; overflow: hidden; backdrop-filter: blur(10px); border: 1.5px solid rgba(255, 255, 255, 0.7); transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); }
.faq-item:hover { background: rgba(255, 255, 255, 0.55); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); border-color: rgba(255, 255, 255, 0.85); }
.faq-question { width: 100%; padding: 20px 25px; background: transparent; border: none; text-align: left; font-size: 1rem; font-weight: 400; color: #1a1a1a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
.faq-question:hover { background: rgba(255, 255, 255, 0.1); }
.faq-arrow { transition: transform 0.3s ease; color: var(--color-primary); flex-shrink: 0; }
.faq-arrow.open { transform: rotate(180deg); }
svg.faq-arrow { width: 16px !important; height: 16px !important; min-width: 16px !important; min-height: 16px !important; max-width: 16px !important; max-height: 16px !important; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.75s ease-in-out; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 25px 20px 25px; color: #2a2a2a; line-height: 1.6; }
.faq-answer .faq-cta { padding: 0 25px 20px 25px; }

/* PAGE WRAPPERS */
.page-container { min-height: 100vh; padding: 100px 0 80px; display: flex; align-items: center; justify-content: center; }
/* Footer legal dropdown */
.footer-legal-group { position: relative; display: inline-block; }
.footer-legal-toggle { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--color-primary); padding: 12px 20px; border-radius: 15px; cursor: pointer; font-weight: 500; }
.footer-legal-toggle .legal-caret { font-size: 0.9rem; margin-left: 4px; transition: transform 0.2s ease; }
.footer-submenu { position: absolute; left: 0; top: calc(100% + 8px); background: rgba(255, 255, 255, 0.22); border: 1px solid rgba(255, 255, 255, 0.4); backdrop-filter: blur(20px); border-radius: 12px; padding: 10px; display: flex; flex-direction: column; min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.footer-submenu .footer-sub-link { padding: 10px 12px; border-radius: 10px; color: var(--color-primary); text-decoration: none; }
.footer-submenu .footer-sub-link:hover { background: rgba(255,255,255,0.2); }
.footer-legal-group.open .legal-caret { transform: rotate(180deg); }

.info-container { display: flex; flex-direction: column; gap: 20px; align-items: center; justify-content: center; width: 100%; max-width: 800px; margin: 0 auto; }
.info-box { background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); border-radius: 20px; padding: 50px 40px; transition: all 0.3s ease; width: 100%; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.info-box:hover { background: rgba(255, 255, 255, 0.55); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); border-color: rgba(255, 255, 255, 0.85); }
.info-box h1 { margin-bottom: 30px; color: var(--color-primary); font-weight: 600; font-size: 2.5rem; text-align: center; }
.info-box h3 { margin: 30px 0 20px 0; color: var(--color-primary); font-weight: 600; }
.info-box h4 { margin: 20px 0 10px 0; color: var(--color-primary); font-weight: 600; }
.info-content { line-height: 1.8; color: #2a2a2a; }
.info-content p { margin-bottom: 15px; }

/* FORM */
.form-group { text-align: left; margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #2a2a2a; }
.form-group input { width: 100%; padding: 12px 16px; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 10px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); font-size: 16px; transition: all 0.3s ease; color: #1a1a1a; }
.form-group input:focus { outline: none; border-color: var(--color-primary); background: rgba(255, 255, 255, 0.28); }
.form-group input::placeholder { color: rgba(26, 26, 26, 0.6); }
.auth-btn { background: #E5739A; color: #ffffff; border: none; padding: 15px; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; margin-top: 10px; width: 100%; }
.auth-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229, 115, 154, 0.3); }

/* FOOTER */
.footer { padding: 60px 0 40px; border-top: 1px solid rgba(255, 255, 255, 0.2); margin-top: auto; position: relative; }
.footer::before { display: none; }
.footer-content { display: flex; flex-direction: column; gap: 40px; align-items: center; position: relative; z-index: 1; }
.footer-links-container { background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); border-radius: 20px; padding: 30px 40px; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06); }
.footer-links-container:hover { background: rgba(255, 255, 255, 0.55); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); border-color: rgba(255, 255, 255, 0.85); }
.footer-links { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer-link { display: flex; align-items: center; gap: 8px; color: var(--color-primary); text-decoration: none; font-weight: 500; padding: 12px 20px; border-radius: 15px; transition: all 0.3s ease; background: rgba(255, 255, 255, 0.4); border: 1.5px solid rgba(255, 255, 255, 0.65); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.footer-link:hover { color: var(--color-secondary); background: rgba(255, 255, 255, 0.55); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192, 72, 117, 0.2); border-color: rgba(255, 255, 255, 0.8); }
.footer-link svg { transition: all 0.3s ease; width: 16px !important; height: 16px !important; min-width: 16px !important; min-height: 16px !important; max-width: 16px !important; max-height: 16px !important; flex-shrink: 0; }
.footer-link:hover svg { transform: scale(1.1); }
.footer-legal-symbol { font-size: 16px !important; line-height: 16px; width: 16px; display: inline-flex; align-items: center; justify-content: center; }
.footeropyright-container { background: rgba(255, 255, 255, 0.35); border: 1.5px solid rgba(255, 255, 255, 0.65); backdrop-filter: blur(15px); border-radius: 15px; padding: 20px 30px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.footeropyright-container:hover { background: rgba(255, 255, 255, 0.49); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); border-color: rgba(255, 255, 255, 0.8); }
.footeropyright { text-align: center; }
.footeropyright p { color: #666; font-size: 0.9rem; margin: 0; }

/* LOADING */
.loading-indicator { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(5px); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.loading-spinner { width: 50px; height: 50px; border: 4px solid rgba(192, 72, 117, 0.3); border-left: 4px solid var(--color-primary); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} }

/* PRODUCT DETAIL PAGE */
.product-detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.product-media { width: 100%; }
.product-summary { background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); border-radius: 20px; padding: 40px 30px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); }
.product-title { font-size: 2.0rem; color: var(--color-primary); font-weight: 600; margin-bottom: 8px; }
.product-tagline { color: #2a2a2a; opacity: 0.85; margin-bottom: 16px; }
.buy-button-area { margin: 10px 0 20px; }
.product-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }

/* Quantity picker on product page */
.qty-picker { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); border-radius: 12px; padding: 6px; width: max-content; }
.qty-picker .qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.08); background: rgba(255,255,255,0.85); cursor: pointer; font-size: 18px; color: var(--color-primary); }
.qty-picker .qty-input { width: 56px; text-align: center; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 6px 4px; background: rgba(255,255,255,0.95); }

.product-highlights { margin: 20px 0; }
.product-highlights h3 { color: var(--color-primary); margin-bottom: 10px; }
.product-highlights ul { list-style: none; padding-left: 0; }
.product-highlights li { padding-left: 30px; position: relative; margin: 6px 0; }
.product-highlights li::before { content: '✓'; position: absolute; left: 6px; color: #22c55e; font-weight: 600; }

/* Slider */
.slider { position: relative; width: 100%; background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); }
.slides { position: relative; width: 100%; height: clamp(320px, 48vw, 520px); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; display: flex; align-items: center; justify-content: center; padding: 16px; }
.slide.is-active { opacity: 1; }
.slide img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.slide video { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); background: #000; }
.img-fallback { background: linear-gradient(135deg, #e6f7f7, #eafbe9); width: 100%; height: 100%; border-radius: 14px; }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.3); backdrop-filter: blur(8px); display: grid; place-items: center; cursor: pointer; transition: all 0.25s ease; color: var(--color-primary); }
.slider-btn:hover { background: rgba(255,255,255,0.45); transform: translateY(-50%) scale(1.04); }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.chevron { display: inline-block; width: 10px; height: 10px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.chevron-left { transform: rotate(-135deg); }
.chevron-right { transform: rotate(45deg); }

.slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; background: rgba(255,255,255,0.35); backdrop-filter: blur(6px); padding: 6px 10px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.5); }
.slider-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.25); border: none; cursor: pointer; transition: all 0.2s ease; }
.slider-dots .dot.is-active { background: var(--color-primary); transform: scale(1.2); }

/* Details */
.product-details { margin-top: 50px; }
.details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.detail-card { background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); border-radius: 16px; padding: 24px; transition: transform 0.25s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); }
.detail-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); border-color: rgba(255, 255, 255, 0.85); }
.detail-card h3 { color: var(--color-primary); margin-bottom: 8px; }

/* CART PAGE (Local Fallback) */
.local-cart { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: center; background: rgba(255,255,255,0.40); border: 1.5px solid rgba(255, 255, 255, 0.65); border-radius: 16px; padding: 14px; backdrop-filter: blur(14px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); }
.cart-item-media img { width: 96px; height: 96px; object-fit: cover; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.cart-item-info { display: flex; flex-direction: column; gap: 8px; }
.cart-item-title { font-weight: 600; color: var(--color-primary); }
.cart-item-price { color: #2a2a2a; opacity: 0.9; }
.cart-item-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qty-control { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); border-radius: 10px; padding: 4px; }
.qty-btn { width: 24px; height: 24px; border-radius: 6px; border: 1px solid rgba(0,0,0,0.08); background: rgba(255,255,255,0.8); cursor: pointer; font-size: 16px; color: var(--color-primary); }
.qty-input { width: 44px; text-align: center; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 4px 4px; background: rgba(255,255,255,0.9); }
.remove-btn, .clear-btn { background: transparent; border: 1px solid rgba(0,0,0,0.1); color: #444; padding: 6px 10px; border-radius: 10px; cursor: pointer; font-size: 0.9rem; }
.remove-btn:hover, .clear-btn:hover { background: rgba(255,255,255,0.4); }
.cart-item-total { font-weight: 600; color: var(--color-secondary); }
.cart-summary { background: rgba(255,255,255,0.40); border: 1.5px solid rgba(255, 255, 255, 0.65); border-radius: 16px; padding: 14px; height: max-content; position: sticky; top: 100px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); }
.summary-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.summary-note { font-size: 0.85rem; color: #555; margin: 6px 0 12px; }
.summary-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.local-cart .cta-btn, .cart-summary .cta-btn { padding: 12px 28px; font-size: 1rem; border-radius: 40px; display: inline-flex; align-items: center; justify-content: center; text-align: center; width: 100%; }
.local-cart .cta-btn.alt { padding: 10px 20px; font-size: 0.95rem; width: 100%; }
.clear-btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 40px; }

/* EMPTY CART */
.empty-cart { text-align: center; background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); border-radius: 16px; padding: 26px; backdrop-filter: blur(14px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }
.empty-cart-icon { color: var(--color-primary); margin-bottom: 10px; }
.empty-cart .cta-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; }

/* NOTIFICATION */
.notification { position: fixed; bottom: 24px; right: 24px; background: rgba(0,0,0,0.8); color: #fff; padding: 12px 16px; border-radius: 12px; z-index: 2000; animation: slideInNotification 0.3s ease; }
.notification--success { background: #16a34a; }
.notification--error { background: #dc2626; }
@keyframes slideInNotification { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }
@keyframes slideOutNotification { to { opacity: 0; transform: translateY(10px);} }

.scroll-reveal[data-delay="600"].visible { transition-delay: 0.6s; }

.legal-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px; }
.btn-glass { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 15px; background: rgba(255, 255, 255, 0.49); border: 1.5px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); color: var(--color-primary); text-decoration: none; font-weight: 500; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); }
.btn-glass:hover { background: rgba(255, 255, 255, 0.55); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192, 72, 117, 0.2); border-color: rgba(255, 255, 255, 0.85); }

@media (max-width: 768px) {
  .legal-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .legal-buttons .btn-glass { width: 100%; justify-content: center; }
}

/* MOBILE */
@media (max-width: 1024px) { .product-detail-grid { grid-template-columns: 1fr; } .local-cart { grid-template-columns: 1fr; } .header-nav { display: none; } }
@media (max-width: 768px) {
  .back-button { top: 100px; left: 15px; width: 40px; height: 40px; }
  .hero-content { padding: 0 20px; transform: translateY(-6vh); }
  .glass-text { font-size: 3.3rem; }
  .hero-content { transform: translateY(-10vh); }
  .subtitle { font-size: 1.35rem; }
  .steps .container { gap: 20px; }
  .step { padding: 30px 20px; }
  .usp .container { gap: 15px; }
  .usp-item { padding: 20px 25px; }
  .header-content { padding: 0 15px; }
  .header-actions { gap: 10px; }
  .footer-content { gap: 30px; }
  .footer-links-container { padding: 25px 20px; }
  .footer-links { flex-direction: row; gap: 10px; flex-wrap: nowrap; }
  .footer-link { padding: 8px 12px; justify-content: center; width: auto; max-width: none; font-size: 0.85rem; }
  .info-box, .auth-box, .checkout-box { padding: 30px 20px; }
  .info-container { gap: 35px; }
  .info-content ol { padding-left: 20px; margin-left: 0; }
  .info-content ol li { margin-left: 0; padding-left: 5px; }
  .price { font-size: 2rem; }
  .faq-section-main h2 { font-size: 2rem; }
  .product-info h3 { font-size: 2rem; }
  .product-features ul { grid-template-columns: 1fr; }
  .slides { height: clamp(260px, 56vw, 420px); }
  .details-grid { grid-template-columns: 1fr; }
  .payment-methods { gap: 1px; flex-wrap: nowrap; }
  .payment-icon { min-width: 30px; padding: 2px 3px; }
}

/* Hyperlink Styles - Global */
a {
  color: #C04875;
  text-decoration: underline;
  text-decoration-color: #C04875;
  transition: all 0.3s ease;
}

a:hover {
  color: #006666;
  text-decoration-color: #006666;
}

/* FAQ Answer Links */
.faq-answer a {
  color: #C04875;
  text-decoration: underline;
  text-decoration-color: #C04875;
  font-weight: 500;
}

.faq-answer a:hover {
  color: #006666;
  text-decoration-color: #006666;
}

/* ===========================================
   NOTFALLAKTE-SPEZIFISCHE STYLES
   (ehemals in notfallakte.css)
   =========================================== */

/* Body alias: falls Klassenname im HTML geändert wird */
.notfallakte-body { }

/* Trust Bar Section */
.trust-bar {
  padding: 30px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.trust-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  max-width: 900px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  cursor: help;
  background: transparent;
  border: none;
}

.trust-badge:hover {
  transform: translateY(-2px);
}

.trust-badge:hover .trust-icon {
  transform: scale(1.1);
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(192, 72, 117, 0.3);
  margin: 0;
}

.trust-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trust-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
}

/* Trust arrows removed - not needed anymore */

/* Mobile adjustments - simple horizontal layout */
@media (max-width: 767px) {
  .trust-bar {
    padding: 20px 10px;
    overflow: visible;
  }
  
  .trust-bar-wrapper {
    overflow: visible;
    justify-content: center;
  }
  
  .trust-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  
  .trust-badge {
    padding: 8px 12px;
    flex-shrink: 0;
  }
  
  .trust-text {
    font-size: 0.85rem;
  }
  
  .trust-icon {
    width: 18px;
    height: 18px;
  }
  
  .trust-divider {
    display: none;
  }
}

/* Testimonial Section */
.testimonial-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.testimonial-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop: Grid Layout - All 3 visible */
@media (min-width: 1024px) {
  .testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    min-height: auto;
  }
  
  .testimonial-card {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  
  .carousel-dots {
    display: none;
  }
}

/* Mobile & Tablet: Horizontal Carousel */
@media (max-width: 1023px) {
  .testimonial-cards {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    min-height: 280px;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    position: absolute;
    width: 100%;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
  }
  
  .testimonial-card[data-state="active"] {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .testimonial-card[data-state="next"] {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
  }
  
  .testimonial-card[data-state="prev"] {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.49);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #2a2a2a;
  font-style: italic;
  margin: 0;
}

/* Carousel Dots - Only visible on mobile */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .carousel-dots {
    display: none;
  }
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(192, 72, 117, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dots .dot:hover {
  background: rgba(192, 72, 117, 0.3);
  transform: scale(1.1);
}

.carousel-dots .dot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Vergleichs-Tabelle im Glas Stil */
.compare { margin: 40px 0; }

/* Status- und Systemseiten (404, Abbruch, Danke) */

/* Gemeinsame Glasbox-Layouts */
.status-page-main {
  min-height: 100vh;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-page-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.49);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: all 0.3s ease;
}

.status-box:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.85);
}

.status-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-icon img,
.status-icon svg {
  width: 120px;
  height: 120px;
  display: block;
}

.status-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.status-code {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1;
}

.status-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.status-message {
  font-size: 1rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 24px;
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.status-list-centered {
  text-align: center;
}

.status-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #2a2a2a;
}

.status-list-centered li {
  padding-left: 0;
}

.status-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 600;
}

/* Variante ohne Aufzählungs-Symbol (für 404) */
.status-list-no-bullets li::before {
  content: none;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.status-btn-primary,
.status-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.status-btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(192, 72, 117, 0.35);
}

.status-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(192, 72, 117, 0.42);
}

.status-btn-secondary {
  background: rgba(255, 255, 255, 0.4);
  color: var(--color-primary);
  border: 1px solid rgba(192, 72, 117, 0.3);
}

.status-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.status-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.status-link:hover {
  opacity: 0.85;
}

.status-footer-links {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(192, 72, 117, 0.18);
  font-size: 0.9rem;
  color: #555555;
}

.status-footer-links a {
  color: var(--color-primary);
  text-decoration: underline;
}

.status-footer-links a:hover {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .status-box {
    padding: 32px 24px;
  }

  .status-title {
    font-size: 1.5rem;
  }

  .status-code {
    font-size: 2.8rem;
  }

  .status-actions {
    flex-direction: column;
  }

  .status-btn-primary,
  .status-btn-secondary {
    width: 100%;
  }
}
/* Vergleich Tabelle - Grid Lines */
.compare-table { 
  background: rgba(255, 255, 255, 0.49); 
  border: 1.5px solid rgba(255, 255, 255, 0.7); 
  border-radius: 20px; 
  backdrop-filter: blur(25px); 
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Durchgehende vertikale Linie in der Mitte */
.compare-table::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(192, 72, 117, 0.35);
  pointer-events: none;
}

/* Header Background & Alignment */
.compare-header { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  border-bottom: 1px solid rgba(192, 72, 117, 0.35);
}

.compare-header div { 
  padding: 10px 16px; 
  font-weight: 700;
  color: #C04875;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Notfallakte Header */
.compare-header div:first-child {
  font-size: 1.2rem;
  background: rgba(192, 72, 117, 0.12);
}

/* Andere Hersteller Header - gleicher Hintergrund */
.compare-header div:last-child {
  font-size: 0.95rem;
  background: rgba(192, 72, 117, 0.12);
}

.compare-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  border-bottom: 1px solid rgba(192, 72, 117, 0.35); /* Horizontale Linien - teal */
}

/* Letzte Zeile ohne Border unten */
.compare-row:last-child {
  border-bottom: none;
}

.compare-cell { 
  padding: 12px 18px; 
}
.compare-row:nth-child(odd) .compare-cell { background: rgba(255, 255, 255, 0.06); }
.compare-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 0.85rem; color: #fff; background: var(--color-primary); }
.compare-note { opacity: 0.8; font-size: 0.95rem; }

/* Minimalistische Icons */
.ci {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  vertical-align: -3px;
  margin-right: 6px;
  flex-shrink: 0;
  display: inline-block;
}
.ci polyline,
.ci circle,
.ci path,
.ci line {
  fill: none !important;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ci-check polyline,
.ci-check circle,
.ci-check path,
.ci-check line { stroke: #16a34a !important; }
.ci-cross polyline,
.ci-cross circle,
.ci-cross path,
.ci-cross line { stroke: #dc2626 !important; }
.ci-unknown polyline,
.ci-unknown circle,
.ci-unknown path,
.ci-unknown line { stroke: #9ca3af !important; }
.ci-shield-good polyline,
.ci-shield-good circle,
.ci-shield-good path,
.ci-shield-good line { stroke: #16a34a !important; }
.ci-shield-bad polyline,
.ci-shield-bad circle,
.ci-shield-bad path,
.ci-shield-bad line { stroke: #dc2626 !important; }

/* URL-Zeile: grüner/roter Hintergrund */
.compare-cell-url-good {
  background: rgba(22, 163, 74, 0.07);
}
.compare-cell-url-bad {
  background: rgba(220, 38, 38, 0.07);
}
.compare-cell-url-good strong { color: #15803d; }
.compare-cell-url-bad strong { color: #b91c1c; }
.ci-shield-good, .ci-shield-bad {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  vertical-align: -3px;
  margin-right: 6px;
}

/* Responsive - Vergleichstabelle Mobile */
@media (max-width: 768px) {
  .compare-table {
    border-radius: 14px;
  }
  .compare-header div {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  .compare-header div:first-child {
    font-size: 1rem;
  }
  .compare-header div:last-child {
    font-size: 0.85rem;
  }
  .compare-cell {
    padding: 8px 10px;
    font-size: 0.85rem;
    line-height: 1.35;
  }
  .compare-cell-url-good,
  .compare-cell-url-bad {
    padding: 10px;
  }
  .compare-cell-url-good strong,
  .compare-cell-url-bad strong {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  .compare-url-note {
    font-size: 0.75rem !important;
    line-height: 1.35;
  }
  .compare-note {
    font-size: 0.85rem;
  }
  .compare-note-small {
    font-size: 0.7rem;
  }
  .compare { margin: 25px 0; }
  .ci {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    margin-right: 4px;
    vertical-align: -2px;
  }
  .ci-shield-good, .ci-shield-bad {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
  }
}

/* Responsive - Mobile adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonial-cards {
    min-height: 300px;
  }
}

/* ==========================================
   CSP FIX: Klassen für ehemalige inline styles
   ========================================== */

/* Loading Indicator */
.loading-indicator-hidden {
  display: none;
}

/* Price Note - Teal Color */
.price-note-teal {
  color: #C04875;
}

/* Horizontal Rule Styles */
.hr-light {
  margin: 20px 0;
  border: none;
  height: 1px;
  background: rgba(255,255,255,1);
}

/* Inventory Info Styles */
.inventory-info-style {
  margin: 8px 0 16px;
  color: var(--color-primary);
}

/* Soldout Box */
.soldout-box-hidden {
  display: none;
}

.soldout-badge-style {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
  color: #b30000;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.soldout-box p {
  margin: 6px 0 10px;
}

/* Waitlist Form Row */
.waitlist-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.waitlist-email-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  font-size: 16px; /* Verhindert Zoom auf iOS */
}

/* Turnstile Container */
#turnstile-container {
  margin: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile Optimierung für Waitlist */
@media (max-width: 640px) {
  .soldout-box {
    padding: 16px;
  }
  
  .soldout-box p {
    font-size: 0.9rem;
    margin: 8px 0 12px;
  }
  
  .waitlist-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .waitlist-email-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px; /* Verhindert Auto-Zoom auf iOS */
  }
  
  .waitlist-row .cta-btn {
    width: 100%;
    padding: 12px 20px;
  }
  
  /* Turnstile auf Mobile zentrieren */
  #turnstile-container {
    transform: scale(0.9);
    transform-origin: center;
  }
}

@media (max-width: 400px) {
  /* Extra kleine Bildschirme - Turnstile kompakter */
  #turnstile-container {
    transform: scale(0.8);
    transform-origin: center;
  }
  
  .soldout-badge-style {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}

/* Purchase Info */
.purchase-info-style {
  margin-bottom: 16px;
}

.purchase-info-text {
  color: #1a1a1a;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.9;
}

/* Stripe Button Container */
.stripe-button-container {
  margin-bottom: 20px;
}

/* Payment Methods */
.payment-methods-style {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.payment-icon img {
  object-fit: contain;
}

/* Product Details Center Box */
.product-details-center-box {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.product-details-center-text {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.product-details-link {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Footer Legal Symbol - unified with icons */

/* Contact Item Styles */
.contact-info {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-link {
  color: var(--color-primary);
}

/* Mocks for potentially missing classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================
   FAQ Page Specific Styles
   ========================================== */

.faq-hero {
    padding: 140px 20px 60px 20px;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.faq-hero p {
    font-size: 1.2rem;
    color: #2a2a2a;
    max-width: 600px;
    margin: 0 auto;
}

.faq-page-wrapper {
    padding: 40px 20px 80px 20px;
}

.faq-page-wrapper .faq-section-main {
    background: transparent;
    padding: 0;
}

.faq-page-wrapper .container {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 120px 20px 40px 20px;
    }
    
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-hero p {
        font-size: 1rem;
    }
}

/* ==========================================
   Weitere CSP FIX Klassen
   ========================================== */

/* Link Styles */
.link-primary-underline {
  color: var(--color-primary);
  text-decoration: underline;
}

.link-primary {
  color: var(--color-primary);
}

/* Anleitung Page */
.anleitung-title {
  color: #C04875;
  font-weight: 600;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.anleitung-section-title {
  color: #C04875;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Home - Haustiere */
.product-features-center-li {
  margin: 0 auto;
  width: fit-content;
  display: block;
}

/* Rechtliches */
.info-content-center {
  text-align: center;
}

/* Vergleich Table */
.compare-url-note {
  font-size: 0.85em;
  opacity: 0.9;
}

.compare-note-small {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Widerruf */
.widerruf-box {
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}

.widerruf-note {
  margin-top: 15px;
}

/* ==========================================
   Hero Redesigned Section - Home Page
   ========================================== */

.hero-redesigned {
  height: auto;
  min-height: 60vh;
  padding: 140px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-redesigned .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
}

/* Subtitle Mobile Smaller */
.subtitle-mobile-small {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .subtitle-mobile-small {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .hero-redesigned {
    min-height: auto;
    padding: 180px 15px 30px;
  }
  
  .hero-redesigned .hero-content {
    gap: 15px;
  }
  
  /* Notfallakte-Schriftzug auf Mobile */
  .hero-redesigned .glass-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
  }
}

/* Trust Bar Inline (unter dem Text) - OHNE Umrandung */
.trust-bar-inline {
  margin-top: 15px;
  margin-bottom: 10px;
}

.trust-badges-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trust-badge-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: transparent;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.trust-badge-inline:hover {
  transform: translateY(-2px);
}

.trust-icon-inline {
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-badges-inline {
    gap: 12px;
    padding: 0 2px;
  }
  
  .trust-badge-inline {
    padding: 4px 6px;
    font-size: 0.85rem;
  }
  
  .trust-icon-inline {
    width: 18px;
    height: 18px;
  }
}

/* Trust Badge Stacked Layout (zweizeilig) */
.trust-badge-stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-text-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.trust-main {
  font-weight: 600;
  font-size: 0.85rem;
}

.trust-sub {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .trust-badge-stacked {
    padding: 4px 2px;
  }
  
  .trust-main {
    font-size: 0.8rem;
  }
  
  .trust-sub {
    font-size: 0.7rem;
  }
  
  .trust-badges-inline {
    gap: 10px;
    padding: 0 2px;
    flex-wrap: nowrap;
  }
}

/* Horizontaler Trennstrich zwischen Button und Bild - ENTFERNT */
/* .hero-divider wurde aus home.html entfernt */
.hero-divider {
  display: none;
}

/* Mehr erfahren Button */
.mehr-erfahren-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-primary);
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(192, 72, 117, 0.3);
  margin-top: 10px;
}

.mehr-erfahren-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192, 72, 117, 0.4);
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .mehr-erfahren-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

/* Hero Image Section */
.hero-image-section {
  padding: 0px 0 40px;
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-image-rounded {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-image-rounded:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-image-section {
    padding: 0px 15px 20px;
    margin-top: -10px;
  }
  
  .hero-image-rounded {
    border-radius: 18px;
  }
  
  /* Reduce gap between button and image on mobile */
  .mehr-erfahren-btn {
    margin-bottom: 0;
  }
}

/* Stats Counter Section */
.stats-counter-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* 2-Spalten Grid für Statistiken */
.stats-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.49);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.85);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 15px;
}

.stat-label {
  font-size: 1.15rem;
  color: #2a2a2a;
  line-height: 1.5;
}

.stat-label sup {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.7em;
}

/* Stats Sources */
.stats-sources {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-sources span {
  font-size: 0.8rem;
  color: #555;
  opacity: 0.8;
}

.stats-sources sup {
  color: var(--color-primary);
  font-weight: 600;
}

/* Mobile: Stats nebeneinander */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 100%;
    padding: 0 10px;
  }
  
  /* 2-Spalten Grid auf Mobile */
  .stats-grid-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-item {
    padding: 15px 8px;
    border-radius: 12px;
  }
  
  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .stats-sources {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
  }
  
  .stats-sources span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .stat-item {
    padding: 15px 10px;
  }
  
  .stats-counter-section {
    padding: 40px 0;
  }
  
  /* 2-Spalten Grid auf sehr kleinen Bildschirmen */
  .stats-grid-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ==========================================
   KONTAKTFORMULAR STYLES
   ========================================== */

/* Disable hover effect on info-box for non-home/produkt pages */
.info-box-no-hover:hover {
  transform: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  background: rgba(255, 255, 255, 0.49) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
}

/* Contact Form Box */
.contact-form-box {
  margin-top: 20px;
}

.contact-form-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  justify-content: center;
}

.contact-form-title svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2a2a2a;
  font-size: 0.95rem;
}

.contact-form .form-group label svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.required-star {
  color: #e74c3c;
  font-weight: 600;
}

.optional-text {
  color: #888;
  font-weight: 400;
  font-size: 0.85rem;
}

/* Input Styles */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 16px;
  transition: all 0.3s ease;
  color: #1a1a1a;
  font-family: inherit;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(192, 72, 117, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(26, 26, 26, 0.5);
}

/* Select Dropdown */
.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23008080' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.contact-form select option {
  background: #fff;
  color: #1a1a1a;
  padding: 10px;
}

/* Textarea */
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Character Counter */
.char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: #888;
  margin-top: 6px;
}

/* Checkbox Group */
.checkbox-group {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text {
  color: #555;
}

.checkbox-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.checkbox-text a:hover {
  color: #006666;
}

/* Turnstile Container */
.turnstile-container {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

/* Submit Button */
.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(192, 72, 117, 0.3);
}

.contact-submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192, 72, 117, 0.4);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-submit-btn svg {
  flex-shrink: 0;
}

/* Form Status Messages */
.form-status {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status-success {
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #166534;
}

.form-status-success svg {
  color: #16a34a;
  flex-shrink: 0;
}

.form-status-error {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #991b1b;
}

.form-status-error svg {
  color: #dc2626;
  flex-shrink: 0;
}

.form-status-loading {
  background: rgba(192, 72, 117, 0.1);
  border: 1px solid rgba(192, 72, 117, 0.3);
  color: var(--color-primary);
}

.form-status-loading svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Spinner Animation */
.spinner {
  animation: contact-spin 1s linear infinite;
}

@keyframes contact-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-form-title {
    font-size: 1.5rem;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form select,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .contact-submit-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .turnstile-container {
    transform: scale(0.95);
    transform-origin: center;
  }
}

@media (max-width: 480px) {
  .turnstile-container {
    transform: scale(0.85);
    transform-origin: center;
  }
  
  .checkbox-label {
    font-size: 0.85rem;
  }
  
  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
}

/* ==========================================
   HOVER EFFEKT NUR FÜR HOME UND PRODUKT SEITEN
   Alle anderen Seiten: Kein Hover-Effekt
   ========================================== */

/* Page-Container mit info-box - Entferne Hover für alle außer home/produkt */
.page-container .info-box:hover,
.page-container .faq-item:hover,
.page-container .detail-card:hover,
.page-container .stat-item:hover,
.page-container .status-box:hover,
.page-container .footer-links-container:hover,
.page-container .footeropyright-container:hover {
  transform: none;
  box-shadow: none;
}

/* FAQ Items in page-container ohne Hover */
.page-container .faq-item:hover {
  background: rgba(255, 255, 255, 0.55);
}

/* Contact Items ohne Hover */
.page-container .contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: none;
}

/* Einwilligungs-Link im Footer - separater Block unter Copyright */
.consent-manage-wrapper {
  text-align: center;
  margin-top: 0;
}
.consent-settings-link {
  display: inline-block;
  font-size: 0.7rem;
  color: #999;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 4px 0;
}
.consent-settings-link:hover {
  color: #666;
  text-decoration: underline;
  text-decoration-color: #666;
}

/* ==========================================
   COOKIE BANNER STYLES (aus JS ausgelagert für CSP-Kompatibilität)
   ========================================== */
div#cookie-banner {
  position: fixed !important;
  bottom: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 48px) !important;
  max-width: 900px !important;
  z-index: 999999 !important;
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 16px !important;
  padding: 24px 28px !important;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  /* Animation wird via JS-Transition gesteuert */
  box-sizing: border-box !important;
  margin: 0 !important;
  top: auto !important;
  right: auto !important;
  float: none !important;
  display: block !important;
}
@keyframes cookieBannerSlideUp {
  from { transform: translateX(-50%) translateY(30px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
@keyframes cookieBannerSlideDown {
  from { transform: translateX(-50%) translateY(0); opacity: 1; }
  to { transform: translateX(-50%) translateY(30px); opacity: 0; }
}
div#cookie-banner #cookie-banner-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
div#cookie-banner #cookie-banner-text {
  flex: 1 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
div#cookie-banner #cookie-banner-text h3 {
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  font-size: 0.938rem !important;
  font-weight: 600 !important;
  color: #0a0a0a !important;
  line-height: 1.4 !important;
  border: none !important;
  background: transparent !important;
  text-align: left !important;
}
div#cookie-banner #cookie-banner-text p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.838rem !important;
  color: #525252 !important;
  line-height: 1.5 !important;
  border: none !important;
  background: transparent !important;
  text-align: left !important;
}
div#cookie-banner #cookie-banner-text a {
  color: #0a0a0a !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}
div#cookie-banner #cookie-banner-text a:hover {
  color: #525252 !important;
}
div#cookie-banner #cookie-banner-actions {
  display: flex !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
div#cookie-banner #cookie-banner-actions button {
  padding: 9px 20px !important;
  font-size: 0.838rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: opacity 0.15s ease !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
  margin: 0 !important;
  box-shadow: none !important;
  text-transform: none !important;
  text-decoration: none !important;
}
div#cookie-banner #cookie-banner-actions button:hover {
  opacity: 0.85 !important;
}
div#cookie-banner #cookie-btn-decline {
  background: #0a0a0a !important;
  color: #ffffff !important;
  border: 1px solid #0a0a0a !important;
}
div#cookie-banner #cookie-btn-accept {
  background: #0a0a0a !important;
  color: #ffffff !important;
  border: 1px solid #0a0a0a !important;
}
@media (max-width: 600px) {
  div#cookie-banner {
    padding: 16px !important;
    bottom: 16px !important;
    width: calc(100% - 32px) !important;
  }
  div#cookie-banner #cookie-banner-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }
  div#cookie-banner #cookie-banner-actions {
    justify-content: stretch !important;
  }
  div#cookie-banner #cookie-banner-actions button {
    flex: 1 !important;
    text-align: center !important;
  }
}
