/*
Theme Name: Vision House - Complete v28
Version: 28.5 - Full Restore
Template: twentytwentyfour
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #0a0a0a;
    --color-accent: #e63946;
    --color-bg: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: rgba(0,0,0,0.08);
    --font: 'Inter', -apple-system, sans-serif;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-premium {
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-premium {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-premium a {
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-premium a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-premium a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-outline {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

.cart-premium {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-accent);
    color: white;
    font-size: 0.55rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.burger-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.burger-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-primary);
    text-decoration: none;
    padding: 20px 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--color-accent);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 60px 36px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-brand {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-light);
    max-width: 300px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: var(--font);
    font-size: 0.75rem;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--color-text-light);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 0.7rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--color-primary);
}

/* ===== HERO ===== */
.hero-clean {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 36px 80px;
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.6) 100%),
                url('https://vision-house.de/wp-content/uploads/medea-clean-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-label {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.hero-clean h1 {
    font-family: var(--font);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.hero-clean h1 em {
    display: block;
    font-style: italic;
    color: var(--color-accent);
    margin-top: 0.2em;
}

.hero-subtitle {
    font-family: var(--font);
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--color-primary);
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--color-primary);
    color: white;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

/* ===== STATS ===== */
.stats-section {
    padding: 100px 36px;
    background: #fafafa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-item h3 {
    font-family: var(--font);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-item h3 span {
    font-size: 1.2rem;
    color: var(--color-accent);
}

.stat-item p {
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== CONTENT ===== */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 36px;
}

.page-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-premium {
        display: none;
    }
    
    .burger-toggle-mobile {
        display: flex;
    }
    
    .header-container {
        padding: 0 24px;
    }
    
    .hero-clean {
        min-height: 90vh;
        padding: 100px 24px 60px;
    }
    
    .hero-clean h1 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .site-footer {
        padding: 50px 24px 25px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .page-content {
        padding: 40px 24px;
    }
}

@media (min-width: 769px) {
    .burger-toggle-mobile {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITIES ===== */
body {
    font-family: var(--font);
    margin: 0;
    padding: 0;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--color-accent);
    color: white;
}

a:focus,
button:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

a {
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* BLOG STYLES */

.blog-archive {
  padding: 120px 36px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.blog-header p {
  color: #666;
  font-size: 1.1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-card-content {
  padding: 30px;
}

.blog-meta {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-card h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card h2 a {
  color: #1a1a1a;
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: #e63946;
}

.blog-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 500;
  color: #e63946;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.no-posts {
  text-align: center;
  padding: 60px;
  color: #666;
}

/* RESPONSIVE BLOG */
@media (max-width: 768px) {
  .blog-archive {
    padding: 100px 24px 60px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .blog-card-content {
    padding: 24px;
  }
}

/* HERO CLEANER - Mobile First */

.hero-clean {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  background: 
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.7) 100%),
    url('https://vision-house.de/wp-content/uploads/medea-clean-hero.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
}

/* Subtle mint tint overlay */
.hero-clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(168,230,207,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease 0.2s both;
}

.hero-clean h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeIn 0.8s ease 0.4s both;
}

.hero-clean h1 em {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: #e63946;
  margin-top: 8px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #555;
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.6;
  animation: fadeIn 0.8s ease 0.6s both;
}

.hero-subtitle strong {
  color: #1a1a1a;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #1a1a1a;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease 0.8s both;
}

.btn-primary:hover {
  background: #e63946;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

/* ===== ALL PAGES RESPONSIVE ===== */

/* Global Responsive */
html {
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

/* Page Wrapper - alle Seiten */
.page-wrapper,
.blog-archive {
  padding-top: 80px;
  min-height: calc(100vh - 200px);
}

.page-container,
.blog-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Page Header für Unterseiten */
.page-header {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 20px;
}

.page-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Page Content */
.page-content {
  font-size: 1rem;
  line-height: 1.8;
}

.page-content h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  margin: 40px 0 20px;
}

.page-content p {
  margin-bottom: 20px;
  color: #444;
}

/* Stats Section - Responsive */
.stats-section {
  padding: 80px 24px;
  background: #fafafa;
}

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

.stat-item h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.stat-item h3 span {
  font-size: 0.5em;
  color: #e63946;
}

.stat-item p {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* MOBILE BREAKPOINTS */
@media (max-width: 768px) {
  
  .hero-clean {
    min-height: 90vh;
    padding: 100px 20px 50px;
    background-position: center 20%;
  }
  
  .hero-clean h1 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stats-section {
    padding: 60px 20px;
  }
  
  .page-container,
  .blog-container {
    padding: 30px 20px;
  }
  
  .page-wrapper,
  .blog-archive {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  
  .hero-clean h1 {
    font-size: 1.9rem;
  }
  
  .hero-label {
    letter-spacing: 2px;
    font-size: 0.65rem;
  }
  
  .btn-primary {
    padding: 14px 32px;
    width: 100%;
    max-width: 280px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
  }
  
  .page-header {
    margin-bottom: 32px;
  }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .stats-grid {
    gap: 40px;
  }
  
  .hero-clean h1 {
    font-size: 3rem;
  }
}

/* LARGE SCREENS */
@media (min-width: 1400px) {
  .page-container,
  .blog-container {
    max-width: 1000px;
  }
}
/* AUTO-MODE ADDITIONS */

/* Smooth Scroll */
html { scroll-behavior: smooth; }

/* Better Focus */
a:focus-visible, button:focus-visible { outline: 2px solid #e63946; outline-offset: 2px; }

/* Image Fade */
img { opacity: 0; animation: fadeInImg 0.5s ease forwards; }
@keyframes fadeInImg { to { opacity: 1; } }

/* Micro Interactions */
.nav-premium a, .footer-nav a { transition: all 0.2s ease; }

/* Button Press */
.btn-primary:active { transform: scale(0.98); }

/* Selection */
::selection { background: #e63946; color: white; }

/* Page Load */
.page-wrapper { animation: fadeInPage 0.6s ease; }
@keyframes fadeInPage { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* CART */
.cart-wrapper{padding:120px 36px 80px;max-width:800px;margin:0 auto}
.cart-title{font-size:clamp(1.75rem,4vw,2.5rem);margin-bottom:40px;text-align:center}
.cart-item{display:flex;justify-content:space-between;padding:24px 0;border-bottom:1px solid rgba(0,0,0,0.08)}
.cart-totals{background:#fafafa;padding:30px;border-radius:8px}
.cart-subtotal{display:flex;justify-content:space-between;font-size:1.1rem;font-weight:500;margin-bottom:24px}
.checkout-btn{width:100%;text-align:center}
.cart-empty{text-align:center;padding:60px 0}
@media(max-width:768px){.cart-wrapper{padding:100px 24px 60px}.cart-item{flex-direction:column}}

/* === PROACTIVE UX ADDITIONS === */


/* === PROACTIVE UX IMPROVEMENTS === */

/* 1. ACTIVE NAVIGATION STATE */
.nav-premium a[aria-current="page"],
.nav-premium a.current {
  color: #e63946;
}

.nav-premium a[aria-current="page"]::after,
.nav-premix a.current::after {
  width: 100%;
}

/* 2. SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: #e63946;
  z-index: 1001;
  width: 0%;
  transition: width 0.1s;
}

/* 3. BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #e63946;
  transform: translateY(-3px);
}

/* 4. BETTER MOBILE MENU ANIMATION */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-menu.active a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }

/* 5. LOADING SPINNER FOR BUTTONS */
.btn-primary.loading {
  position: relative;
  color: transparent;
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: buttonSpinner 0.8s linear infinite;
}

@keyframes buttonSpinner {
  to { transform: rotate(360deg); }
}

/* 6. LINK UNDERLINE ANIMATION (alle Links) */
a:not(.btn-primary):not(.logo-premium) {
  position: relative;
  text-decoration: none;
}

a:not(.btn-primary):not(.logo-premium)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #e63946;
  transition: width 0.3s ease;
}

a:not(.btn-primary):not(.logo-premium):hover::after {
  width: 100%;
}

/* 7. CARD HOVER LIFT */
.blog-card,
.cart-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover,
.cart-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* 8. FORM INPUT FOCUS */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #e63946;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

/* 9. SKELETON LOADING */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s ease-in-out infinite;
}

@keyframes skeletonLoading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 10. TOAST NOTIFICATIONS */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a1a;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10000;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #dc3545;
}

/* === HERO MINIMAL === */
.hero-clean h1 em {
  display: none; /* Entfernt "mit System" vom Hero */
}

.hero-clean .hero-label {
  font-size: 0.9rem;
  letter-spacing: 6px;
}

.hero-clean {
  min-height: 85vh; /* Etwas kleiner */
}

/* === INTRO SECTION (unter Hero) === */
.intro-section {
  padding: 80px 36px;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.intro-container {
  max-width: 700px;
  margin: 0 auto;
}

.intro-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

.intro-lead strong {
  font-weight: 500;
  color: #1a1a1a;
}

.intro-price {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: #e63946;
  letter-spacing: -2px;
}

.intro-price::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #e63946;
  margin: 0 auto 20px;
}

/* === HOME CONTENT (mehr CSS) === */
.home-content .page-content {
  padding: 100px 36px;
  max-width: 800px;
  margin: 0 auto;
}

.home-content .page-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.home-content .page-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #e63946;
  margin: 20px auto 0;
}

.home-content .page-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 2rem;
}

.home-content .page-content p:first-of-type::first-letter {
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  padding-right: 15px;
  color: #e63946;
  font-weight: 300;
}

/* Feature Boxes für Content */
.home-content .page-content ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.home-content .page-content li {
  padding: 30px;
  background: #fafafa;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.home-content .page-content li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.home-content .page-content li::before {
  content: '✓';
  display: block;
  width: 30px;
  height: 30px;
  background: #e63946;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Zitate im Content */
.home-content .page-content blockquote {
  margin: 50px 0;
  padding: 30px 40px;
  background: #fafafa;
  border-left: 4px solid #e63946;
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
}

/* Responsive Home Content */
@media (max-width: 768px) {
  .hero-clean {
    min-height: 80vh;
  }
  
  .intro-section {
    padding: 60px 24px;
  }
  
  .intro-lead {
    font-size: 1.1rem;
  }
  
  .home-content .page-content {
    padding: 60px 24px;
  }
  
  .home-content .page-content ul {
    grid-template-columns: 1fr;
  }
}

/* === COACHING FORM STYLES === */

.coaching-wrapper {
  padding: 120px 36px 80px;
  max-width: 700px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

.coaching-header {
  text-align: center;
  margin-bottom: 50px;
}

.coaching-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 16px;
}

.coaching-intro {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* WPForms Styling */
.wpforms-form {
  background: #fafafa;
  padding: 40px;
  border-radius: 12px;
}

.wpforms-field {
  margin-bottom: 24px !important;
}

.wpforms-field-label {
  font-weight: 500 !important;
  color: #333 !important;
  margin-bottom: 8px !important;
  display: block;
}

.wpforms-field-required {
  color: #e63946 !important;
}

.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  background: white !important;
}

.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
  border-color: #e63946 !important;
  box-shadow: 0 0 0 4px rgba(230,57,70,0.1) !important;
  outline: none !important;
}

.wpforms-field 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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

.wpforms-submit {
  background: #1a1a1a !important;
  color: white !important;
  padding: 16px 40px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
}

.wpforms-submit:hover {
  background: #e63946 !important;
  transform: translateY(-2px) !important;
}

/* Fallback Form */
.coaching-form-fallback {
  background: #fafafa;
  padding: 40px;
  border-radius: 12px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #e63946;
  box-shadow: 0 0 0 4px rgba(230,57,70,0.1);
  outline: none;
}

.form-field 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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.form-checkbox a {
  color: #e63946;
  text-decoration: underline;
}

.coaching-submit {
  width: 100%;
  margin-top: 10px;
}

/* Coaching Info Box */
.coaching-info {
  margin-top: 60px;
  padding: 40px;
  background: #f4f4f4;
  border-radius: 12px;
}

.coaching-info h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.coaching-info ul {
  list-style: none;
  padding: 0;
}

.coaching-info li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.6;
}

.coaching-info li:last-child {
  border-bottom: none;
}

.coaching-info strong {
  color: #e63946;
}

/* Responsive */
@media (max-width: 768px) {
  .coaching-wrapper {
    padding: 100px 24px 60px;
  }
  
  .wpforms-form,
  .coaching-form-fallback,
  .coaching-info {
    padding: 30px 24px;
  }
}
/* ===== VISUAL DELIGHT: Content Below Header ===== */

/* Scroll Indicator - Animiert unter dem Header */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #e63946, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* Hero Enhancement - Subtle Gradient Overlay */
.hero-clean {
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
    overflow: hidden;
}

.hero-clean::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(230,57,70,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-clean::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(10,10,10,0.02) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-label {
    position: relative;
}

.hero-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e63946, transparent);
}

/* Section Separators */
.intro-section {
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e63946;
    border-radius: 2px;
}

/* Floating Badge für Intro */
.intro-container {
    position: relative;
}

.intro-badge {
    display: inline-block;
    background: #e63946;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Stats Section - Karten-Styling */
.stats-section {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

.stat-item {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #e63946;
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-item h3 span {
    color: #e63946;
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 2px;
}

/* Decorative Dots Pattern */
.pattern-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(230,57,70,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.pattern-dots-top-right {
    top: 100px;
    right: 40px;
}

.pattern-dots-bottom-left {
    bottom: 100px;
    left: 40px;
}

/* Content Section Enhancements */
.home-content {
    position: relative;
}

.home-content .page-content h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.home-content .page-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e63946;
    border-radius: 2px;
}

/* Feature Cards Enhancement */
.home-content .page-content li {
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}

.home-content .page-content li::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    width: 36px;
    height: 36px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.home-content .page-content li:nth-child(1)::before { content: '01'; background: #e63946; }
.home-content .page-content li:nth-child(2)::before { content: '02'; background: #333; }
.home-content .page-content li:nth-child(3)::before { content: '03'; background: #e63946; }
.home-content .page-content li:nth-child(4)::before { content: '04'; background: #333; }
.home-content .page-content li:nth-child(5)::before { content: '05'; background: #e63946; }
.home-content .page-content li:nth-child(6)::before { content: '06'; background: #333; }

.home-content .page-content li {
    padding-top: 70px;
}

/* Blockquote Enhancement */
.home-content .page-content blockquote {
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-left: none;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.home-content .page-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: #e63946;
    opacity: 0.2;
    line-height: 1;
}

/* Section Transitions */
section + section {
    position: relative;
}

/* Accent Lines */
.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e63946, rgba(230,57,70,0.3));
    border-radius: 2px;
    margin: 0 auto;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .stat-item {
        padding: 24px 20px;
    }
    
    .pattern-dots {
        width: 100px;
        height: 100px;
        background-size: 15px 15px;
    }
    
    .pattern-dots-top-right {
        right: 20px;
        opacity: 0.5;
    }
    
    .pattern-dots-bottom-left {
        left: 20px;
        opacity: 0.5;
    }
}

/* Dark Section Variation */
.section-dark {
    background: #0a0a0a;
    color: #fff;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(230,57,70,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-dark .accent-line {
    background: linear-gradient(90deg, #e63946, rgba(230,57,70,0.5));
}
/* ===== CART PAGE - PREMIUM DESIGN ===== */

.cart-premium-wrapper {
    padding: 140px 36px 100px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100px);
    min-height: calc(100vh - 200px);
}

.cart-premium-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb Navigation */
.cart-page-header {
    margin-bottom: 50px;
}

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.crumb-step {
    color: #999;
    transition: color 0.3s;
}

.crumb-step.completed {
    color: #0a0a0a;
    font-weight: 500;
}

.crumb-separator {
    color: #ddd;
}

.cart-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Cart Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Cart Items Section */
.cart-items-section {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.cart-items-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 20px 30px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    font-weight: 500;
}

.cart-items-list {
    padding: 0;
}

/* Cart Item Card */
.cart-item-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s;
}

.cart-item-card:last-child {
    border-bottom: none;
}

.cart-item-card:hover {
    background: #fafafa;
}

.cart-item-product {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.cart-item-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.cart-item-remove {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #e63946;
}

.cart-item-remove svg {
    width: 14px;
    height: 14px;
}

/* Price */
.cart-item-price-wrap {
    display: flex;
    align-items: flex-start;
}

.cart-item-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    white-space: nowrap;
}

/* Summary Section */
.cart-summary-section {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.cart-summary-card h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.cart-summary-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.cart-total-amount {
    font-size: 1.4rem;
    color: #e63946;
}

.cart-tax-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
}

.cart-summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

/* Checkout Button */
.btn-checkout-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 25px;
    padding: 18px 30px;
    background: #e63946;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-checkout-premium:hover {
    background: #c62835;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}

.btn-checkout-premium svg {
    transition: transform 0.3s;
}

.btn-checkout-premium:hover svg {
    transform: translateX(4px);
}

/* Trust Badges */
.cart-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #666;
}

.trust-badge svg {
    flex-shrink: 0;
}

/* Continue Shopping */
.cart-continue-shopping {
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: #e63946;
}

.back-link svg {
    transition: transform 0.3s;
}

.back-link:hover svg {
    transform: translateX(-4px);
}

/* Empty Cart State */
.cart-empty-premium {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.cart-empty-icon {
    margin-bottom: 30px;
}

.cart-empty-premium h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.cart-empty-premium p {
    color: #666;
    margin-bottom: 30px;
}

.cart-empty-premium .btn-checkout-premium {
    max-width: 300px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-premium-wrapper {
        padding: 120px 20px 60px;
    }
    
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item-price-wrap {
        justify-content: flex-start;
        padding-top: 15px;
        border-top: 1px dashed #e0e0e0;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-summary-section {
        position: static;
    }
    
    .cart-summary-card {
        padding: 25px;
    }
    
    .cart-empty-premium {
        padding: 60px 30px;
    }
}

/* Cart Item Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item-card {
    animation: fadeInUp 0.4s ease forwards;
}

.cart-item-card:nth-child(1) { animation-delay: 0.05s; }
.cart-item-card:nth-child(2) { animation-delay: 0.1s; }
.cart-item-card:nth-child(3) { animation-delay: 0.15s; }
/* ===== CART PAGE - PREMIUM STYLING ===== */

.cart-premium-wrapper {
    padding: 140px 36px 100px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 200px);
    min-height: calc(100vh - 200px);
}

.cart-premium-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Breadcrumb Navigation */
.cart-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.crumb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.crumb-step.active .crumb-number {
    background: #e63946;
    color: #fff;
}

.crumb-step.active .crumb-label {
    color: #0a0a0a;
    font-weight: 500;
}

.crumb-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.crumb-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.crumb-line {
    width: 80px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 20px;
    position: relative;
    top: -10px;
}

/* Title */
.cart-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

/* Empty Cart State */
.cart-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.cart-empty-icon svg {
    width: 100%;
    height: 100%;
}

.cart-empty-state h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.cart-empty-state p {
    color: #666;
    margin-bottom: 30px;
}

.btn-cart-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #e63946;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cart-primary:hover {
    background: #c62835;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}

.btn-cart-primary svg {
    transition: transform 0.3s;
}

.btn-cart-primary:hover svg {
    transform: translateX(4px);
}

/* Cart Layout */
.cart-layout-premium {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

@media (max-width: 900px) {
    .cart-layout-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Cart Items Panel */
.cart-items-panel {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.cart-items-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 20px 30px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    font-weight: 500;
}

.cart-items-list {
    padding: 0;
}

/* Cart Item */
.cart-item-premium {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s;
}

.cart-item-premium:last-child {
    border-bottom: none;
}

.cart-item-premium:hover {
    background: #fafafa;
}

.cart-item-main {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cart-item-thumb {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.cart-item-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.cart-item-delete {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.cart-item-delete:hover {
    color: #e63946;
}

.cart-item-delete svg {
    width: 14px;
    height: 14px;
}

/* Price */
.cart-item-price-wrap {
    display: flex;
    align-items: flex-start;
}

.cart-item-amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    white-space: nowrap;
}

/* Summary Panel */
.cart-summary-panel {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.cart-summary-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.total-amount {
    font-size: 1.4rem;
    color: #e63946;
}

.tax-hint {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

/* Checkout Button */
.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 25px;
    padding: 18px 30px;
    background: #e63946;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background: #c62835;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}

.btn-checkout svg {
    transition: transform 0.3s;
}

.btn-checkout:hover svg {
    transform: translateX(4px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #666;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Continue Shopping */
.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.continue-shopping:hover {
    color: #e63946;
}

.continue-shopping svg {
    transition: transform 0.3s;
}

.continue-shopping:hover svg {
    transform: translateX(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    .cart-premium-wrapper {
        padding: 120px 20px 60px;
    }
    
    .cart-breadcrumb {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .crumb-line {
        width: 40px;
        margin: 0 10px;
    }
    
    .cart-item-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item-price-wrap {
        justify-content: flex-start;
        padding-top: 15px;
        border-top: 1px dashed #e0e0e0;
    }
    
    .cart-item-thumb {
        width: 80px;
        height: 80px;
    }
    
    .cart-summary-panel {
        position: static;
    }
    
    .cart-summary-card {
        padding: 25px;
    }
    
    .cart-empty-state {
        padding: 60px 30px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item-premium {
    animation: fadeInUp 0.4s ease forwards;
}

.cart-item-premium:nth-child(1) { animation-delay: 0.05s; }
.cart-item-premium:nth-child(2) { animation-delay: 0.1s; }
.cart-item-premium:nth-child(3) { animation-delay: 0.15s; }
/** CART PREMIUM CSS **/

/* Cart Page Container */
.cart-premium-wrapper {
    padding: 140px 36px 100px !important;
    background: linear-gradient(180deg, #fafafa 0%, #fff 200px) !important;
    min-height: calc(100vh - 200px) !important;
}

.cart-premium-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
}

/* Breadcrumb */
.cart-breadcrumb-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    margin-bottom: 50px !important;
}

.crumb-step { text-align: center !important; }
.crumb-number {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    margin: 0 auto 8px !important;
}
.crumb-step.active .crumb-number {
    background: #e63946 !important;
    color: #fff !important;
}
.crumb-step:not(.active) .crumb-number {
    background: #f0f0f0 !important;
    color: #999 !important;
}
.crumb-label {
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
.crumb-step.active .crumb-label {
    color: #0a0a0a !important;
    font-weight: 500 !important;
}
.crumb-step:not(.active) .crumb-label {
    color: #999 !important;
}
.crumb-line {
    width: 80px !important;
    height: 2px !important;
    background: #e0e0e0 !important;
    margin: 0 20px !important;
    position: relative !important;
    top: -10px !important;
}

/* Title */
.cart-page-title {
    text-align: center !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 400 !important;
    margin-bottom: 50px !important;
    letter-spacing: -0.02em !important;
}

/* WooCommerce Cart Table */
.woocommerce-cart-form {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04) !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}

.shop_table.cart {
    width: 100% !important;
    border-collapse: collapse !important;
}

.shop_table.cart thead th {
    background: #fafafa !important;
    padding: 20px 30px !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #666 !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    text-align: left !important;
}

.shop_table.cart tbody td {
    padding: 30px !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

.shop_table.cart tbody tr:last-child td {
    border-bottom: none !important;
}

/* Product Image */
.shop_table.cart .product-thumbnail img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

/* Product Name */
.shop_table.cart .product-name a {
    color: #0a0a0a !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* Remove Link */
.shop_table.cart .remove {
    color: #999 !important;
    font-size: 0.8rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 12px !important;
}

.shop_table.cart .remove:hover {
    color: #e63946 !important;
}

/* Price */
.shop_table.cart .product-price,
.shop_table.cart .product-subtotal {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #0a0a0a !important;
}

/* Cart Totals */
.cart-collaterals .cart_totals {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 35px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important;
    max-width: 400px !important;
    margin-left: auto !important;
}

.cart_totals h2 {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.cart_totals th,
.cart_totals td {
    padding: 15px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-top: 2px solid #f0f0f0 !important;
    border-bottom: none !important;
}

.cart_totals .order-total .amount {
    font-size: 1.4rem !important;
    color: #e63946 !important;
}

/* Checkout Button */
.wc-proceed-to-checkout {
    margin-top: 25px !important;
}

.wc-proceed-to-checkout .checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 18px 30px !important;
    background: #e63946 !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: #c62835 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(230,57,70,0.3) !important;
}

/* Empty Cart */
.cart-empty.woocommerce {
    text-align: center !important;
    padding: 80px 40px !important;
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06) !important;
}

.cart-empty.woocommerce h2 {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    margin-bottom: 12px !important;
}

.cart-empty.woocommerce p {
    color: #666 !important;
    margin-bottom: 30px !important;
}

.cart-empty.woocommerce .button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 40px !important;
    background: #e63946 !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-premium-wrapper {
        padding: 120px 20px 60px !important;
    }
    
    .shop_table.cart th,
    .shop_table.cart td {
        padding: 20px !important;
    }
    
    .shop_table.cart .product-thumbnail img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .cart_totals {
        margin: 0 !important;
    }
}
/** PREMIUM CART STYLING - WooCommerce Standard **/

/* Cart Page Container */
.woocommerce-cart,
.wc-block-cart {
    padding: 140px 36px 100px !important;
    background: linear-gradient(180deg, #fafafa 0%, #fff 200px) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Hide ugly WooCommerce blocks header */
.wp-block-woocommerce-cart h2:first-of-type,
.wc-block-cart__page-title {
    display: none !important;
}

/* Main cart container */
.wc-block-cart__container,
.woocommerce-cart-form {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06) !important;
    padding: 40px !important;
}

/* Breadcrumb style navigation */
.wc-block-components-checkout-step__header::before,
.wc-block-cart__subtotal-title {
    color: #e63946 !important;
    font-weight: 500 !important;
}

/* Cart title */
.woocommerce-cart h1,
.wc-block-cart__title {
    text-align: center !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 400 !important;
    margin-bottom: 50px !important;
    letter-spacing: -0.02em !important;
}

/* Cart items */
.wc-block-cart-items__row,
.cart_item {
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 20px 0 !important;
}

.wc-block-cart-item__image img,
.product-thumbnail img {
    border-radius: 12px !important;
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
}

/* Product name */
.wc-block-cart-item__title,
.product-name a {
    color: #0a0a0a !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* Price */
.wc-block-formatted-money-amount,
.wc-block-cart-item__total-price,
.product-price,
.product-subtotal {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #0a0a0a !important;
}

/* Remove button */
.wc-block-cart-item__remove-link,
.remove {
    color: #999 !important;
    font-size: 0.8rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 12px !important;
    cursor: pointer !important;
}

.wc-block-cart-item__remove-link:hover,
.remove:hover {
    color: #e63946 !important;
}

/* Cart totals / Sidebar */
.wc-block-cart__totals,
.cart_totals {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 35px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important;
}

.wc-block-cart__totals-title,
.cart_totals h2 {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Checkout button */
.wc-block-cart__submit-container,
.wc-proceed-to-checkout {
    margin-top: 25px !important;
}

.wc-block-components-button,
.checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 18px 30px !important;
    background: #e63946 !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-button:hover,
.checkout-button:hover {
    background: #c62835 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(230,57,70,0.3) !important;
}

/* Total price */
.wc-block-cart__totals-item--total .wc-block-formatted-money-amount,
.order-total .amount {
    font-size: 1.4rem !important;
    color: #e63946 !important;
    font-weight: 600 !important;
}

/* Empty cart state */
.wc-block-cart__empty-cart,
.cart-empty {
    text-align: center !important;
    padding: 80px 40px !important;
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06) !important;
}

/* Trust badges area */
.wc-block-cart__sidebar::after,
.cart_totals::after {
    content: '🔒 SSL-gesichert  •  ⚡ Sofortiger Download  •  ❤️ 30 Tage Garantie';
    display: block !important;
    margin-top: 30px !important;
    padding-top: 25px !important;
    border-top: 1px solid #f0f0f0 !important;
    font-size: 0.8rem !important;
    color: #666 !important;
    text-align: center !important;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-cart,
    .wc-block-cart {
        padding: 120px 20px 60px !important;
    }
    
    .wc-block-cart__container,
    .woocommerce-cart-form {
        padding: 25px !important;
    }
    
    .wc-block-cart-item__image img,
    .product-thumbnail img {
        width: 80px !important;
        height: 80px !important;
    }
}
/** PREMIUM CART V2 - Hochwertiges Design **/

/* Cart Page Wrapper */
.woocommerce-cart,
.wp-block-woocommerce-cart,
.wc-block-cart {
    padding: 0 !important;
    background: transparent !important;
    max-width: none !important;
    margin: 0 !important;
}

/* Main Container */
.woocommerce-cart::before,
.wc-block-cart::before {
    content: '' !important;
    display: block !important;
    padding: 140px 36px 100px !important;
    background: linear-gradient(180deg, #fafafa 0%, #fff 50%, #fafafa 100%) !important;
    min-height: calc(100vh - 200px) !important;
}

/* Hide default WooCommerce titles */
.wc-block-cart__title,
.woocommerce-cart h1,
.wp-block-heading.wc-block-cart__title {
    display: none !important;
}

/* Custom Header Section */
.woocommerce-cart .wc-block-cart__container,
.wc-block-cart__container {
    position: relative !important;
    z-index: 1 !important;
    max-width: 1100px !important;
    margin: -500px auto 0 !important;
    padding: 0 36px !important;
}

/* Breadcrumb Style */
.woocommerce-cart .wc-block-cart__container::before,
.wc-block-cart__container::before {
    content: '1    →    2    →    3' !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
    font-size: 0.75rem !important;
    letter-spacing: 2px !important;
    color: #999 !important;
}

/* Cart Title */
.woocommerce-cart .wc-block-cart__container::after,
.wc-block-cart__container::after {
    content: 'Warenkorb' !important;
    display: block !important;
    text-align: center !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 300 !important;
    margin-bottom: 50px !important;
    letter-spacing: -0.02em !important;
    color: #0a0a0a !important;
}

/* Cart Items Container */
.wc-block-cart-items,
.woocommerce-cart-form {
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08) !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
}

/* Cart Item Row */
.wc-block-cart-items__row,
.cart_item {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 20px !important;
    padding: 25px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

.wc-block-cart-items__row:hover,
.cart_item:hover {
    background: #fafafa !important;
    border-radius: 12px !important;
}

.wc-block-cart-items__row:last-child,
.cart_item:last-child {
    border-bottom: none !important;
}

/* Product Image */
.wc-block-cart-item__image,
.product-thumbnail {
    width: 100px !important;
    height: 100px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #f5f5f5 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
}

.wc-block-cart-item__image img,
.product-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.wc-block-cart-items__row:hover .wc-block-cart-item__image img,
.cart_item:hover .product-thumbnail img {
    transform: scale(1.05) !important;
}

/* Product Details */
.wc-block-cart-item__title a,
.product-name a {
    color: #0a0a0a !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
}

.wc-block-cart-item__title a:hover,
.product-name a:hover {
    color: #e63946 !important;
}

/* Variation/Description */
.wc-block-cart-item__description,
.product-name .variation {
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-top: 5px !important;
}

/* Price Section */
.wc-block-cart-item__total,
.product-subtotal {
    text-align: right !important;
}

.wc-block-formatted-money-amount,
.product-subtotal .amount {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #0a0a0a !important;
}

/* Remove Button */
.wc-block-cart-item__remove-link,
.remove {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #bbb !important;
    font-size: 0.75rem !important;
    text-decoration: none !important;
    margin-top: 10px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.wc-block-cart-item__remove-link:hover,
.remove:hover {
    color: #e63946 !important;
}

/* Cart Totals / Sidebar */
.wc-block-cart__totals,
.cart-collaterals {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 35px !important;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08) !important;
    position: sticky !important;
    top: 100px !important;
}

.wc-block-cart__totals-title,
.cart_totals h2 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #f0f0f0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #0a0a0a !important;
}

/* Summary Rows */
.wc-block-cart__totals-item,
.cart_totals tr {
    display: flex !important;
    justify-content: space-between !important;
    padding: 12px 0 !important;
    font-size: 0.95rem !important;
}

.wc-block-cart__totals-item--subtotal,
.cart-subtotal {
    color: #666 !important;
}

/* Total Row */
.wc-block-cart__totals-item--total,
.order-total {
    border-top: 2px solid #f0f0f0 !important;
    margin-top: 15px !important;
    padding-top: 20px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #0a0a0a !important;
}

.wc-block-cart__totals-item--total .wc-block-formatted-money-amount,
.order-total .amount {
    font-size: 1.5rem !important;
    color: #e63946 !important;
}

/* Checkout Button */
.wc-block-cart__submit-container {
    margin-top: 30px !important;
}

.wc-block-components-button,
.checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 20px 30px !important;
    background: linear-gradient(135deg, #e63946 0%, #c62835 100%) !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 25px rgba(230,57,70,0.3) !important;
}

.wc-block-components-button:hover,
.checkout-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(230,57,70,0.4) !important;
}

.wc-block-components-button::after,
.checkout-button::after {
    content: '→' !important;
    margin-left: 5px !important;
    transition: transform 0.3s ease !important;
}

.wc-block-components-button:hover::after,
.checkout-button:hover::after {
    transform: translateX(5px) !important;
}

/* Trust Badges */
.wc-block-components-totals-wrapper::after,
.cart_totals::after {
    content: '' !important;
    display: block !important;
    margin-top: 30px !important;
    padding-top: 25px !important;
    border-top: 1px solid #f0f0f0 !important;
}

/* Trust Items */
.wc-block-components-totals-wrapper {
    position: relative !important;
}

/* Empty Cart */
.wc-block-cart__empty-cart,
.cart-empty.woocommerce {
    text-align: center !important;
    padding: 100px 40px !important;
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08) !important;
}

.wc-block-cart__empty-cart-title,
.cart-empty h2 {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    margin-bottom: 15px !important;
    color: #0a0a0a !important;
}

.wc-block-cart__empty-cart-description,
.cart-empty p {
    color: #888 !important;
    margin-bottom: 30px !important;
}

/* Continue Shopping Button */
.wc-block-cart__empty-cart .wc-block-components-button,
.cart-empty .button {
    background: #0a0a0a !important;
    color: #fff !important;
    padding: 16px 40px !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
}

.wc-block-cart__empty-cart .wc-block-components-button:hover,
.cart-empty .button:hover {
    background: #333 !important;
    transform: translateY(-2px) !important;
}

/* Loading State */
.wc-block-cart__loading {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 80px !important;
    text-align: center !important;
}

.wc-block-cart__loading::before {
    content: 'Warenkorb wird geladen...' !important;
    display: block !important;
    color: #666 !important;
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-cart::before,
    .wc-block-cart::before {
        padding: 120px 20px 60px !important;
    }
    
    .woocommerce-cart .wc-block-cart__container,
    .wc-block-cart__container {
        margin-top: -300px !important;
        padding: 0 20px !important;
    }
    
    .wc-block-cart-items,
    .woocommerce-cart-form {
        padding: 20px !important;
    }
    
    .wc-block-cart-items__row,
    .cart_item {
        grid-template-columns: 80px 1fr !important;
        gap: 15px !important;
        padding: 20px 0 !important;
    }
    
    .wc-block-cart-item__image,
    .product-thumbnail {
        width: 80px !important;
        height: 80px !important;
    }
    
    .wc-block-cart__totals,
    .cart-collaterals {
        position: relative !important;
        top: 0 !important;
        padding: 25px !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wc-block-cart-items__row,
.cart_item {
    animation: fadeInUp 0.4s ease forwards;
}

.wc-block-cart-items__row:nth-child(1) { animation-delay: 0.05s; }
.wc-block-cart-items__row:nth-child(2) { animation-delay: 0.1s; }
.wc-block-cart-items__row:nth-child(3) { animation-delay: 0.15s; }

/* Quantity Selector */
.wc-block-components-quantity-selector {
    border: 2px solid #f0f0f0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.wc-block-components-quantity-selector__button {
    background: #fafafa !important;
    border: none !important;
    color: #666 !important;
    font-size: 1.2rem !important;
    width: 40px !important;
    height: 40px !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.wc-block-components-quantity-selector__button:hover {
    background: #f0f0f0 !important;
}

.wc-block-components-quantity-selector__input {
    border: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    width: 50px !important;
    text-align: center !important;
}

/* Coupon Section */
.wc-block-components-totals-coupon {
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.wc-block-components-totals-coupon__form {
    display: flex !important;
    gap: 10px !important;
}

.wc-block-components-totals-coupon__input {
    flex: 1 !important;
    padding: 12px 16px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
}

.wc-block-components-totals-coupon__button {
    padding: 12px 20px !important;
    background: #0a0a0a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.wc-block-components-totals-coupon__button:hover {
    background: #333 !important;
}
/** CART V3 - Header-Matching Design **/

/* Cart Page - Clean wie Header */
.woocommerce-cart,
.wp-block-woocommerce-cart {
    padding: 120px 36px 80px !important;
    background: #fff !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* Clean Title wie im Header */
.woocommerce-cart h1,
.wc-block-cart__title,
.cart-title {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #0a0a0a !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    padding-top: 40px !important;
    position: relative !important;
}

.woocommerce-cart h1::after,
.wc-block-cart__title::after,
.cart-title::after {
    content: '' !important;
    display: block !important;
    width: 40px !important;
    height: 1px !important;
    background: #0a0a0a !important;
    margin: 20px auto 0 !important;
}

/* Minimal Breadcrumb */
.cart-breadcrumb {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

.cart-breadcrumb .step {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #999 !important;
    position: relative !important;
}

.cart-breadcrumb .step.active {
    color: #0a0a0a !important;
}

.cart-breadcrumb .separator {
    color: #ddd !important;
    font-size: 0.8rem !important;
}

/* Cart Container - Clean wie Header */
.woocommerce-cart-form,
.wc-block-cart__container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Cart Grid Layout */
.cart-grid {
    display: grid !important;
    grid-template-columns: 1fr 360px !important;
    gap: 60px !important;
    align-items: start !important;
}

@media (max-width: 1000px) {
    .cart-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* Items List - Clean */
.cart-items {
    border-top: 1px solid #f0f0f0 !important;
}

.cart-item {
    display: grid !important;
    grid-template-columns: 100px 1fr auto !important;
    gap: 30px !important;
    padding: 30px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: center !important;
}

/* Product Image - Clean */
.cart-item-image {
    width: 100px !important;
    height: 100px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #f5f5f5 !important;
}

.cart-item-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: grayscale(100%) !important;
    transition: filter 0.5s ease !important;
}

.cart-item:hover .cart-item-image img {
    filter: grayscale(0%) !important;
}

/* Product Info */
.cart-item-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.cart-item-name {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    letter-spacing: -0.01em !important;
}

.cart-item-desc {
    font-size: 0.8rem !important;
    color: #888 !important;
    line-height: 1.5 !important;
}

/* Remove - Minimal */
.cart-item-remove {
    font-size: 0.6rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #999 !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.cart-item-remove:hover {
    color: #0a0a0a !important;
}

/* Price - Align Right */
.cart-item-price {
    text-align: right !important;
}

.cart-item-price .amount {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    letter-spacing: -0.01em !important;
}

/* Sidebar / Summary */
.cart-summary {
    position: sticky !important;
    top: 100px !important;
    padding: 40px !important;
    background: #fafafa !important;
    border: 1px solid #f0f0f0 !important;
}

.cart-summary-title {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #0a0a0a !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

/* Summary Rows */
.summary-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 15px 0 !important;
    font-size: 0.85rem !important;
    color: #666 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.summary-row:last-of-type {
    border-bottom: none !important;
}

.summary-row.total {
    margin-top: 10px !important;
    padding-top: 20px !important;
    border-top: 2px solid #0a0a0a !important;
    border-bottom: none !important;
    font-size: 1rem !important;
    color: #0a0a0a !important;
    font-weight: 500 !important;
}

.summary-row.total .amount {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

/* Checkout Button - Wie Header Style */
.checkout-button {
    width: 100% !important;
    padding: 18px 30px !important;
    margin-top: 30px !important;
    background: #0a0a0a !important;
    color: #fff !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.checkout-button:hover {
    background: #333 !important;
    letter-spacing: 2px !important;
}

/* Empty Cart - Clean */
.cart-empty {
    text-align: center !important;
    padding: 100px 40px !important;
}

.cart-empty h2 {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #0a0a0a !important;
    margin-bottom: 20px !important;
}

.cart-empty p {
    font-size: 0.9rem !important;
    color: #888 !important;
    margin-bottom: 30px !important;
}

.cart-empty .button {
    display: inline-block !important;
    padding: 16px 40px !important;
    background: #0a0a0a !important;
    color: #fff !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.cart-empty .button:hover {
    background: #333 !important;
    letter-spacing: 2px !important;
}

/* Trust Line - Minimal */
.trust-line {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e0e0e0 !important;
    font-size: 0.6rem !important;
    color: #999 !important;
    text-align: center !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

/* Continue Shopping */
.continue-shopping {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 20px !important;
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #999 !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.continue-shopping:hover {
    color: #0a0a0a !important;
}

/* WooCommerce Overrides - Clean */
.wc-block-cart__container {
    background: transparent !important;
}

.wc-block-cart-items {
    border-top: 1px solid #f0f0f0 !important;
}

.wc-block-cart-items__row {
    display: grid !important;
    grid-template-columns: 100px 1fr auto !important;
    gap: 30px !important;
    padding: 30px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: center !important;
}

.wc-block-cart-item__image {
    width: 100px !important;
    height: 100px !important;
    border-radius: 0 !important;
}

.wc-block-cart-item__image img {
    filter: grayscale(100%) !important;
    transition: filter 0.5s ease !important;
}

.wc-block-cart-items__row:hover .wc-block-cart-item__image img {
    filter: grayscale(0%) !important;
}

.wc-block-cart-item__title {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    letter-spacing: -0.01em !important;
}

.wc-block-formatted-money-amount {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    letter-spacing: -0.01em !important;
}

.wc-block-cart__totals {
    position: sticky !important;
    top: 100px !important;
    padding: 40px !important;
    background: #fafafa !important;
    border: 1px solid #f0f0f0 !important;
}

.wc-block-components-button {
    background: #0a0a0a !important;
    border: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.wc-block-components-button:hover {
    background: #333 !important;
}

/* Responsive */
@media (max-width: 1000px) {
    .cart-grid,
    .wc-block-cart__main,
    .wc-block-cart__sidebar {
        grid-template-columns: 1fr !important;
    }
    
    .cart-item,
    .wc-block-cart-items__row {
        grid-template-columns: 80px 1fr !important;
    }
    
    .cart-item-image,
    .wc-block-cart-item__image {
        width: 80px !important;
        height: 80px !important;
    }
}
/** CHECKOUT V1 - Apple-Inspired Premium Design **/

/* Checkout Page Base */
.woocommerce-checkout,
.wp-block-woocommerce-checkout,
.wc-block-checkout {
    padding: 120px 36px 100px !important;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 50%, #fff 100%) !important;
    min-height: calc(100vh - 120px) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif !important;
}

/* Hide Default WooCommerce Titles */
.woocommerce-checkout h1,
.wc-block-checkout__title,
.checkout-title {
    display: none !important;
}

/* Apple-Style Container */
.apple-checkout-container {
    max-width: 980px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Express Checkout (Apple Pay etc) */
.wc-block-checkout__actions,
.wc-express-checkout {
    background: #fff !important;
    border-radius: 18px !important;
    padding: 40px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

/* Or Divider - Apple Style */
.wc-block-checkout__actions::before,
.checkout-divider {
    content: '— oder —' !important;
    display: block !important;
    text-align: center !important;
    color: #86868b !important;
    font-size: 15px !important;
    margin: 30px 0 !important;
    letter-spacing: 0.5px !important;
}

/* Main Checkout Grid - Apple Style */
.wc-block-checkout__main,
.woocommerce-checkout .col2-set {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 60px !important;
    align-items: start !important;
}

@media (max-width: 900px) {
    .wc-block-checkout__main,
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* Glassmorphism Cards - Apple Spotlight Style */
.wc-block-checkout__form,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
}

/* Section Headers - Apple SF Pro Style */
.wc-block-checkout__form h2,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    margin-bottom: 30px !important;
    letter-spacing: -0.021em !important;
    line-height: 1.125 !important;
}

/* Form Labels - Apple Style */
.wc-block-form-field label,
.woocommerce-form__label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Input Fields - Apple Style */
.wc-block-form-field input,
.wc-block-form-field select,
.wc-block-form-field textarea,
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100% !important;
    padding: 18px 16px !important;
    font-size: 17px !important;
    color: #1d1d1f !important;
    background: #f5f5f7 !important;
    border: 1px solid #d2d2d7 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.wc-block-form-field input:hover,
.woocommerce-checkout input.input-text:hover {
    border-color: #86868b !important;
}

.wc-block-form-field input:focus,
.woocommerce-checkout input.input-text:focus {
    border-color: #0071e3 !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(0,113,227,0.15) !important;
}

/* Placeholder - Apple Style */
.wc-block-form-field input::placeholder,
.woocommerce-checkout input::placeholder {
    color: #a1a1a6 !important;
    font-weight: 400 !important;
}

/* Select Dropdown - Apple Style */
.wc-block-form-field select {
    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='%23686868' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
    cursor: pointer !important;
}

/* Checkbox - Apple Style */
.wc-block-form-field input[type="checkbox"],
.woocommerce-checkout input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    border-radius: 6px !important;
    border: 2px solid #d2d2d7 !important;
    cursor: pointer !important;
    vertical-align: middle !important;
    margin-right: 10px !important;
}

.wc-block-form-field input[type="checkbox"]:checked {
    background: #0071e3 !important;
    border-color: #0071e3 !important;
}

/* Sidebar / Order Review - Apple Style */
.wc-block-checkout__sidebar,
.woocommerce-checkout #order_review {
    position: sticky !important;
    top: 100px !important;
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
}

/* Order Summary Header */
.wc-block-checkout__sidebar h2,
#order_review_heading {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    margin-bottom: 25px !important;
    letter-spacing: -0.021em !important;
}

/* Order Table - Apple Style */
.wc-block-order-summary,
.woocommerce-checkout-review-order-table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.wc-block-order-summary__item,
.woocommerce-checkout-review-order-table thead th {
    padding: 20px 0 !important;
    border-bottom: 1px solid #d2d2d7 !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    text-transform: none !important;
    font-size: 16px !important;
}

.wc-block-order-summary__product,
.cart_item {
    display: flex !important;
    align-items: center !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f5f5f7 !important;
}

.wc-block-order-summary__product-image img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-right: 15px !important;
}

.wc-block-order-summary__product-name,
.product-name {
    font-size: 15px !important;
    color: #1d1d1f !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

.wc-block-order-summary__product-price,
.product-total {
    font-size: 15px !important;
    color: #1d1d1f !important;
    font-weight: 600 !important;
    margin-left: auto !important;
}

/* Order Totals - Apple Style */
.wc-block-checkout__totals-item,
.cart-subtotal,
.cart-total {
    display: flex !important;
    justify-content: space-between !important;
    padding: 15px 0 !important;
    font-size: 15px !important;
    color: #86868b !important;
    border-bottom: 1px solid #f5f5f7 !important;
}

.wc-block-checkout__totals-item:last-child,
.cart-total:last-child {
    border-bottom: none !important;
}

.wc-block-checkout__totals-item--total,
.order-total {
    padding-top: 20px !important;
    margin-top: 10px !important;
    border-top: 1px solid #d2d2d7 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
}

.wc-block-checkout__totals-item--total .amount,
.order-total .amount {
    font-size: 22px !important;
    color: #1d1d1f !important;
    font-weight: 700 !important;
}

/* Payment Methods - Apple Style */
.wc-block-components-payment-methods,
.woocommerce-payment-methods {
    background: #f5f5f7 !important;
    border-radius: 16px !important;
    padding: 30px !important;
    margin-top: 30px !important;
}

.wc-block-components-radio-control__option,
.wc_payment_method {
    display: flex !important;
    align-items: center !important;
    padding: 15px !important;
    background: #fff !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.wc-block-components-radio-control__option:hover,
.wc_payment_method:hover {
    border-color: #0071e3 !important;
}

.wc-block-components-radio-control__option-checked,
.wc_payment_method.selected {
    border-color: #0071e3 !important;
    background: rgba(0,113,227,0.05) !important;
}

/* Place Order Button - Apple Style */
.wc-block-checkout__place-order-button,
#place_order {
    width: 100% !important;
    padding: 18px 30px !important;
    background: #0071e3 !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 30px !important;
    letter-spacing: -0.021em !important;
}

.wc-block-checkout__place-order-button:hover,
#place_order:hover {
    background: #0077ed !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0,113,227,0.4) !important;
}

/* Loading State */
.wc-block-checkout__place-order-button:disabled,
#place_order:disabled {
    background: #d2d2d7 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Error Messages - Apple Style */
.woocommerce-error,
.wc-block-components-notice {
    background: rgba(255,59,48,0.1) !important;
    color: #ff3b30 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

/* Success Messages - Apple Style */
.woocommerce-message,
.wc-block-components-notice--success {
    background: rgba(52,199,89,0.1) !important;
    color: #34c759 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

/* Coupon Code - Apple Style */
.wc-block-components-coupon-code {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 25px !important;
}

.wc-block-components-coupon-code__input {
    flex: 1 !important;
    padding: 12px 16px !important;
    background: #f5f5f7 !important;
    border: 1px solid #d2d2d7 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
}

.wc-block-components-coupon-code__apply {
    padding: 12px 24px !important;
    background: #0071e3 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

/* Step Progress - Apple Style */
.stepper {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    margin-bottom: 50px !important;
    padding: 20px 0 !important;
}

.step {
    text-align: center !important;
    color: #86868b !important;
}

.step.active {
    color: #1d1d1f !important;
    font-weight: 600 !important;
}

.step-number {
    display: inline-block !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    border-radius: 50% !important;
    background: #f5f5f7 !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
}

.step.active .step-number {
    background: #0071e3 !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 900px) {
    .woocommerce-checkout,
    .wp-block-woocommerce-checkout {
        padding: 100px 20px 60px !important;
    }
    
    .woocommerce-billing-fields,
    .woocommerce-shipping-fields {
        padding: 30px !important;
    }
    
    #order_review {
        position: relative !important;
        top: 0 !important;
    }
    
    .wc-block-checkout__form h3 {
        font-size: 24px !important;
    }
}

/* Animations - Apple Smooth */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wc-block-checkout__form,
#order_review {
    animation: fadeIn 0.5s ease forwards;
}

/* Focus Ring - Apple Blue */
*:focus-visible {
    outline: 2px solid #0071e3 !important;
    outline-offset: 2px !important;
}
/** FRONT PAGE - BELOW HERO STYLING **/
/* Passend zum Header: Clean, Minimal, Uppercase Labels */

/* ========================================
   SECTION BASE - Clean wie Header
   ======================================== */
.intro-section,
.stats-section,
.cta-section,
.home-content {
    background: #fafafa !important;
    padding: 100px 36px !important;
}

/* Section Headers - Uppercase wie Header */
.intro-section h2,
.stats-section h2,
.cta-section h2,
.home-content h2 {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #0a0a0a !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    position: relative !important;
}

/* Thin underline wie Header */
.intro-section h2::after,
.stats-section h2::after,
.cta-section h2::after,
.home-content h2::after {
    content: '' !important;
    display: block !important;
    width: 40px !important;
    height: 1px !important;
    background: #0a0a0a !important;
    margin: 20px auto 0 !important;
}

/* ========================================
   INTRO SECTION - 12-Wochen-Plan
   ======================================== */
.intro-container {
    max-width: 700px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.intro-lead {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #0a0a0a !important;
    margin-bottom: 40px !important;
}

.intro-text {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: #666 !important;
}

.intro-text p {
    margin-bottom: 20px !important;
}

/* ========================================
   STATS SECTION - Minimal Grid
   ======================================== */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 60px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

.stat-item {
    text-align: center !important;
    padding: 40px 20px !important;
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

.stat-item:hover {
    border-color: #0a0a0a !important;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 300 !important;
    color: #0a0a0a !important;
    line-height: 1 !important;
    margin-bottom: 10px !important;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.stat-label {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #999 !important;
}

/* Highlight stat */
.stat-item.featured {
    background: #0a0a0a !important;
    border-color: #0a0a0a !important;
}

.stat-item.featured .stat-number {
    color: #fff !important;
}

.stat-item.featured .stat-label {
    color: #999 !important;
}

/* ========================================
   CTA SECTION - Clean Call-to-Action
   ======================================== */
.cta-section {
    background: #fff !important;
    border-top: 1px solid #f0f0f0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.cta-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.cta-title {
    font-size: 1.75rem !important;
    font-weight: 400 !important;
    color: #0a0a0a !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

.cta-subtitle {
    font-size: 1rem !important;
    color: #666 !important;
    margin-bottom: 40px !important;
    line-height: 1.6 !important;
}

/* CTA Button - Wie Header Style */
.btn-premium {
    display: inline-block !important;
    padding: 18px 48px !important;
    background: #0a0a0a !important;
    color: #fff !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-premium:hover {
    background: #333 !important;
    letter-spacing: 3px !important;
}

/* ========================================
   FEATURES SECTION - Was Du Bekommst
   ======================================== */
.home-content {
    background: #fff !important;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px !important;
    background: #f0f0f0 !important;
    border: 1px solid #f0f0f0 !important;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

.feature-item {
    background: #fff !important;
    padding: 50px 40px !important;
    transition: all 0.3s ease !important;
}

.feature-item:hover {
    background: #fafafa !important;
}

.feature-number {
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #999 !important;
    margin-bottom: 15px !important;
}

.feature-title {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    margin-bottom: 10px !important;
}

.feature-desc {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: #666 !important;
}

/* ========================================
   BLOCKQUOTE - Testimonial Style
   ======================================== */
.home-content blockquote {
    max-width: 700px !important;
    margin: 80px auto !important;
    padding: 60px 40px !important;
    background: #0a0a0a !important;
    color: #fff !important;
    text-align: center !important;
    position: relative !important;
}

.home-content blockquote::before {
    content: '"' !important;
    font-size: 4rem !important;
    color: rgba(255,255,255,0.1) !important;
    position: absolute !important;
    top: 20px !important;
    left: 30px !important;
    line-height: 1 !important;
}

.home-content blockquote p {
    font-size: 1.25rem !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    font-style: italic !important;
}

.home-content blockquote cite {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #999 !important;
    font-style: normal !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .intro-section,
    .stats-section,
    .cta-section,
    .home-content {
        padding: 60px 24px !important;
    }
    
    .intro-lead {
        font-size: 1.25rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .cta-title {
        font-size: 1.5rem !important;
    }
    
    .feature-item {
        padding: 40px 30px !important;
    }
}
/** STARTSEITE - CLEAN MINIMAL DESIGN **/
/* Keine Experimente. Einfach. Gut. */

.home {
    background: #fff;
    color: #0a0a0a;
}

/* Hero Content */
.hero-clean {
    text-align: center;
    padding: 140px 36px 80px;
    background: #fafafa;
}

.hero-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e63946;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 30px;
}

/* Content Sections */
.intro-section {
    padding: 100px 36px;
    background: #fff;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #0a0a0a;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.intro-text p {
    margin-bottom: 1.5em;
}

/* Stats Section */
.stats-section {
    padding: 80px 36px;
    background: #fafafa;
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #eee;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #0a0a0a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
}

/* Features */
.home-content {
    padding: 100px 36px;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: #eee;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 50px 40px;
}

.feature-card:hover {
    background: #fafafa;
}

.feature-num {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 100px 36px;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1rem;
    color: #999;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #e63946;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c62835;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #0a0a0a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0a0a0a;
    color: #fff;
}

/* Testimonial */
.home-blockquote {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    background: #fafafa;
    text-align: center;
}

.home-blockquote p {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.home-blockquote cite {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-clean { padding: 120px 24px 60px; }
    .intro-section { padding: 60px 24px; }
    .stats-section { padding: 60px 24px; }
    .home-content { padding: 60px 24px; }
    .cta-section { padding: 60px 24px; }
    
    .stat-number { font-size: 2.5rem; }
    .hero-title { font-size: 2rem; }
}
/* MOBILE FIXES */\n/* MOBILE FIXES - Vision House */

/* Header Mobile Fix */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 15px !important;
    flex-wrap: wrap;
  }
  
  .site-header .site-branding {
    flex: 0 0 auto;
    max-width: 60%;
  }
  
  .site-header .main-navigation {
    display: none;
  }
  
  .site-header .menu-toggle {
    display: block !important;
    background: #e63946;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
  }
  
  /* Hero Mobile */
  .hero-section {
    min-height: auto !important;
    padding: 60px 15px !important;
  }
  
  .hero-content h1 {
    font-size: clamp(28px, 8vw, 48px) !important;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 16px !important;
  }
  
  /* Fix "100kg" Text vor Hero */
  .hero-section::before {
    display: none !important;
  }
  
  /* Content padding */
  .page-wrapper,
  .entry-content {
    padding: 20px 15px !important;
  }
  
  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  
  /* Buttons */
  .btn-primary,
  .button {
    width: 100% !important;
    max-width: 280px;
    padding: 15px 20px !important;
    font-size: 16px;
  }
  
  /* Footer links */
  .footer-links {
    font-size: 14px !important;
  }
  
  /* Cart table */
  .woocommerce-cart table.cart {
    font-size: 14px;
  }
  
  .woocommerce-cart table.cart td {
    padding: 10px 5px !important;
  }
  
  /* Checkout form */
  .woocommerce-checkout .col2-set {
    flex-direction: column !important;
  }
  
  .woocommerce-checkout .col-1,
  .woocommerce-checkout .col-2 {
    width: 100% !important;
    float: none !important;
  }
  
  /* Form inputs */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 12px !important;
  }
}

/* Tablet Fixes */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    padding: 80px 30px !important;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  
  .site-header {
    padding: 15px 30px !important;
  }
}

/* Hide broken shortcode text */
.entry-content p:empty,
.entry-content p:contains("[elementor-template") {
  display: none !important;
}

/* WordPress Toolbar ausblenden auf Mobile */
@media (max-width: 768px) {
  #wpadminbar {
    display: none !important;
  }
  
  html {
    margin-top: 0 !important;
  }
}
/* Hide 100kg overlay on mobile */\n@media (max-width: 768px) {\n  .hero-section::before,\n  .hero-content::before,\n  .site-content > .text:first-of-type {\n    display: none !important;\n    content: none !important;\n  }\n}

/* ===== SELLING POINTS: Features Section ===== */
.features-section {
    background: #fafafa;
    padding: 100px 36px;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    background: #e63946;
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.features-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-section { padding: 80px 24px; }
    .features-grid { grid-template-columns: 1fr; gap: 24px; }
    .features-title { margin-bottom: 40px; }
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    background: #0a0a0a;
    color: white;
    padding: 120px 36px;
    text-align: center;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    color: #888;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonial-section { padding: 80px 24px; }
}

/* ===== FINAL CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 36px;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-sub {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 24px;
}

.cta-guarantee {
    color: #666;
    font-size: 0.875rem;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .cta-section { padding: 80px 24px; }
}
/* ===== BRAND REFRESH: Autoritär, Kraftvoll, Professionell ===== */

/* HERO Improvements */
.hero-subline {
    font-size: 1.1rem;
    color: #666;
    margin: 16px 0 32px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-bio {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.bio-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a0a;
    margin-bottom: 4px;
}

.bio-title {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

/* Intro Improvements */
.intro-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* MINDSET SECTION */
.mindset-section {
    background: #0a0a0a;
    color: white;
    padding: 100px 36px;
    text-align: center;
}

.mindset-container {
    max-width: 800px;
    margin: 0 auto;
}

.mindset-quote {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 24px 0;
    border-left: none;
}

.mindset-container cite {
    color: #888;
    font-size: 0.9rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .mindset-section { padding: 80px 24px; }
}

/* FEATURES Refresh */
.feature-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e63946;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.feature-card {
    text-align: left;
}

.features-disclaimer {
    margin-top: 60px;
    text-align: center;
}

.features-disclaimer p {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

/* TESTIMONIAL Refresh */
.testimonial-stats {
    margin-bottom: 32px;
}

.stat-large {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: #e63946;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BELIEF SECTION */
.belief-section {
    background: #fafafa;
    padding: 100px 36px;
}

.belief-container {
    max-width: 700px;
    margin: 0 auto;
}

.belief-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 48px;
    color: #0a0a0a;
}

.belief-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.belief-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: #333;
}

.belief-list li:last-child {
    border-bottom: none;
}

.belief-list .check {
    width: 24px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.belief-list .check::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .belief-section { padding: 80px 24px; }
}
