        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            width: 100%;
            height: 100%;
            overflow: hidden; /* HTML scrollt nicht mehr */
        }

        :root {
            --primary-color: #111827;
            --accent-color: #111827;
            --accent-hover: #374151;
            --bg-color: #ffffff;
            --text-color: #4b5563;
            --card-bg: #ffffff;
            --border-radius: 24px;
            --shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        body {
            font-family: 'Outfit', system-ui, -apple-system, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
            background: #f9fafb;
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            height: 100%; /* Body füllt den Screen */
            overflow-y: auto; /* Body scrollt vertikal */
            overflow-x: hidden; /* Body schneidet horizontal ab (Android Fix) */
            width: 100%;
            max-width: 100%;
            -webkit-text-size-adjust: 100%;
        }

        /* Announcement Bar */
        .announcement-bar {
            background: #f3f4f6;
            color: var(--primary-color);
            text-align: center;
            padding: 0.5rem;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .content-wrapper {
            width: 100%;
            overflow-x: hidden;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Header & Nav */
        header {
            background-color: rgba(255, 255, 255, 0.599);
            backdrop-filter: blur(10px);
            color: var(--text-color);
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--primary-color);
            letter-spacing: -0.5px;
        }

        .logo img {
            width: 200px;
            border-radius: 10px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            opacity: 0.7;
        }

        nav a:hover,
        nav a.active {
            color: var(--accent-color);
            opacity: 1;
        }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Country Selector in Nav */
        .nav-country-select {
            background: rgba(0,0,0,0.04);
            border: none;
            border-radius: 99px;
            padding: 0.5rem 2rem 0.5rem 0.8rem;
            font-size: 0.95rem;
            cursor: pointer;
            color: var(--text-color);
            font-weight: 600;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234b5563%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 0.7rem top 50%;
            background-size: 0.65rem auto;
        }
        .nav-country-select:hover { background-color: rgba(0,0,0,0.08); color: var(--accent-color); }

        /* Icons Optimization */
        .icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .cart-icon {
            position: relative;
            cursor: pointer;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .hamburger {
            display: none;
        }

        /* Main Content */
        main {
            flex: 1;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            width: 100%;
            box-sizing: border-box;
        }

        .section {
            display: none;
            animation: fadeIn 0.5s ease-out;
        }

        .section.active {
            display: block;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1,
        h2 {
            color: var(--primary-color);
            letter-spacing: -0.5px;
        }

        /* Product Grid */
        .product-grid {
            display: flex;
            overflow-x: auto;
            padding-bottom: 1.5rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 2rem;
        }

        .product-slider-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .scroll-btn {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            z-index: 20;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.2s ease;
            padding: 0;
            color: var(--text-color);
        }
        .scroll-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: scale(1.1);
        }
        .scroll-btn.left { left: -22px; }
        .scroll-btn.right { right: -22px; }

        .product-grid::-webkit-scrollbar {
            height: 6px;
        }
        .product-grid::-webkit-scrollbar-thumb {
            background-color: rgba(0,0,0,0.1);
            border-radius: 10px;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            border: none;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            opacity: 0; /* Für Stagger-Animation */
            animation: fadeInUp 0.6s ease-out forwards;
            position: relative;
            min-width: 200px;
            max-width: 25vw;
            flex: 0 0 auto;
            scroll-snap-align: start;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }

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

        .product-img {
            width: 100%;
            height: 150px;
            background-color: #e5e7eb;
            object-fit: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 0.9rem;
            overflow: hidden;
        }

        .product-img img {
            transition: var(--transition);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-details {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-title {
            font-size: 1.1rem;
            margin: 0 0 0.5rem 0;
            font-weight: bold;
        }

        .product-desc {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .variant-info {
            font-size: 0.75rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 99px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
            font-size: 0.95rem;
        }

        button:hover {
            background-color: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        button.secondary {
            background-color: #95a5a6;
        }

        button.secondary:hover {
            background-color: #7f8c8d;
        }

        button.danger {
            background-color: #e74c3c;
        }

        button.danger:hover {
            background-color: #c0392b;
        }

        /* Sale & Prices */
        .old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
            margin-right: 8px;
        }
        
        .sale-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #000;
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 10;
        }

        /* Favorite Button */
        .fav-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            padding: 0;
            color: #ccc;
            transition: all 0.2s ease;
        }
        .fav-btn:hover {
            transform: scale(1.1);
            background: white;
            color: #000;
        }
        .fav-btn.active {
            color: #000;
            background: white;
        }
        .fav-btn.active svg {
            animation: heartPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            fill: currentColor;
        }
        @keyframes heartPop {
            0% { transform: scale(1); }
            50% { transform: scale(1.5); }
            100% { transform: scale(1); }
        }
        .fav-btn svg {
            width: 22px;
            height: 22px;
        }

        /* Cart */
        .cart-layout {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 2rem;
            align-items: start;
        }

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

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: transform 0.2s;
        }
        .cart-item:hover {
            transform: translateY(-2px);
        }

        .cart-controls {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .qty-selector {
            display: flex;
            align-items: center;
            background: #f3f4f6;
            border-radius: 12px;
            padding: 2px;
        }
        .qty-selector button {
            width: 32px;
            height: 32px;
            padding: 0;
            background: white;
            color: #333;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .qty-selector button:hover {
            background: var(--accent-color);
            color: white;
        }
        .qty-selector span {
            width: 30px;
            text-align: center;
            font-weight: bold;
        }

        .item-total {
            font-weight: bold;
            font-size: 1.1rem;
            color: var(--primary-color);
            min-width: 80px;
            text-align: right;
        }

        .remove-btn {
            background: #fee2e2;
            color: #ef4444;
            width: 40px;
            height: 40px;
            padding: 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .remove-btn:hover {
            background: #ef4444;
            color: white;
        }

        /* Cart Summary */
        .cart-summary {
            background: white;
            padding: 2rem;
            border-radius: 24px;
            box-shadow: var(--shadow);
            position: sticky;
            top: 100px;
        }
        .cart-summary h3 {
            margin-top: 0;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: #666;
            font-size: 0.95rem;
        }
        .discount-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--accent-color);
            font-weight: bold;
        }
        .discount-input-group {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .summary-total {
            display: flex;
            justify-content: space-between;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px dashed #eee;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .checkout-btn-large {
            width: 100%;
            padding: 1.2rem;
            font-size: 1.1rem;
            background: var(--primary-color);
            box-shadow: none;
            border-radius: var(--border-radius);
        }
        .checkout-btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(219, 39, 119, 0.4);
        }
        .trust-badges {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            font-size: 0.85rem;
            color: #9ca3af;
        }

        /* Empty State */
        .cart-empty-state {
            text-align: center;
            padding: 4rem 2rem;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow);
        }
        .cart-empty-icon {
            font-size: 5rem;
            margin-bottom: 1rem;
            display: block;
            opacity: 0.8;
            animation: float 3s ease-in-out infinite;
        }
        
        .cart-suggestions {
            margin-top: 3rem;
            text-align: left;
            border-top: 1px solid #eee;
            padding-top: 2rem;
        }

        /* Footer */
        footer {
            background-color: white;
            color: var(--text-color);
            text-align: center;
            padding: 2rem 0;
            margin-top: auto;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        footer a {
            color: var(--accent-color);
            text-decoration: none;
        }

        /* Utilities */
        .hidden {
            display: none !important;
        }

        input,
        textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-family: inherit;
            transition: var(--transition);
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 4px rgba(219, 39, 119, 0.1);
            transform: translateY(-2px);
        }

        /* Search Bar */
        .search-wrapper {
            position: relative;
            max-width: 500px;
            margin: 0 auto 2rem;
        }

        .search-wrapper input {
            padding-left: 3rem;
            border-radius: 99px;
            border: 1px solid rgba(0,0,0,0.1);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }

        .search-icon-overlay {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            pointer-events: none;
        }

        /* Hide number input spinners for cleaner look */
        input[type=number]::-webkit-inner-spin-button, 
        input[type=number]::-webkit-outer-spin-button { 
            -webkit-appearance: none; 
            margin: 0; 
        }
        input[type=number] { -moz-appearance: textfield; }

        /* Hero Specific */
        .hero-banner {
            background: #f9f9f9;
            border: 1px solid #e5e7eb;
            animation: none;
            color: var(--primary-color);
            border-radius: var(--border-radius);
            padding: 3rem 0.5rem;
            margin-bottom: 3rem;
            box-shadow: none;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content {
            animation: float 6s ease-in-out infinite;
        }

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

        .hero-banner h1 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 3rem;
        }

        .hero-banner p {
            color: var(--text-color) !important;
            font-size: 1.25rem;
        }

        .hero-banner button {
            background: var(--primary-color);
            color: white;
            border: none;
        }

        .hero-banner button:hover {
            background: var(--accent-hover);
            box-shadow: none;
        }

        /* --- NEXT LEVEL CHECKOUT WIZARD --- */
        /* Checkout Overlay - Full Screen Experience */
        #checkout {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            height: 100dvh;
            z-index: 10001;
            background: #fff; /* Fallback */
            display: none;
            place-items: center;
            padding: 20px;
            box-sizing: border-box;
        }
        #checkout.active {
            display: grid;
        }

        /* Animated Background Elements */
        .checkout-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #ffffff;
            z-index: -1;
            overflow: hidden;
        }
        .orb {
            display: none;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) rotate(0deg) scale(1); }
            100% { transform: translate(50px, 50px) rotate(10deg) scale(1.1); }
        }

        .checkout-wizard {
            width: 100%;
            max-width: 900px;
            min-height: 500px;
            max-height: 90vh;
            background: #ffffff;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 
                0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
            transform: translateY(30px);
            opacity: 0;
            animation: slideUpCard 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
        }

        @keyframes slideUpCard {
            to { transform: translateY(0); opacity: 1; }
        }

        .wizard-header {
            background: transparent;
            padding: 3rem 3rem 1rem;
            text-align: left;
        }
        
        .wizard-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        /* Liquid Progress Bar */
        .wizard-progress {
            height: 6px;
            background: rgba(0,0,0,0.05);
            margin: 1rem 0 0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            width: 100%;
        }
        .progress-bar-fill {
            height: 100%;
            background: var(--primary-color);
            width: 33%;
            border-radius: 10px;
            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: none;
        }

        .wizard-content {
            padding: 2rem 3rem;
            flex: 1;
            position: relative;
            overflow-y: auto;
        }

        .wizard-step {
            display: none;
            animation: slideInRight 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .wizard-step.active { display: block; }

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

        .wizard-footer {
            padding: 15px;
            border-top: 1px solid rgba(255,255,255,0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.3);
        }
        
        /* Inputs Redesign */
        input, textarea, select {
            background: #f9fafb;
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 1.2rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            width: 100%;
            box-sizing: border-box;
            font-family: inherit;
        }
        input:focus, select:focus, textarea:focus {
            background: #fff;
            border-color: var(--primary-color);
            box-shadow: none;
            transform: translateY(-2px) scale(1.01);
            outline: none;
        }

        /* Payment Cards */
        .payment-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .payment-card {
            background: #f9fafb;
            border: 2px solid transparent;
            padding: 2rem;
            border-radius: 24px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .payment-card:hover {
            transform: translateY(-5px) scale(1.02);
            background: #fff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .payment-card.selected {
            background: #fff;
            border-color: var(--accent-color);
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .payment-card input { display: none; }
        .payment-icon { margin-bottom: 0.5rem; display: flex; justify-content: center; }
        .payment-icon svg {
            width: 32px;
            height: 32px;
        }
        
        /* Magic Button */
        #btn-next {
            background: var(--primary-color);
            box-shadow: none;
            border-radius: var(--border-radius);
            padding: 1rem 2rem;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        #btn-next:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            filter: brightness(1.1);
        }

        /* Confetti Canvas */
        #confetti-canvas {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 9999;
        }

        /* Toast Notifications */
        #toast-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .toast {
            background: white;
            color: var(--text-color);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            border-left: 4px solid var(--accent-color);
            animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 300px;
            font-weight: 500;
        }

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Cart Bump Animation */
        .cart-bump {
            animation: bump 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        @keyframes bump {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

        /* Spinner */
        .spinner { border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; border-top: 2px solid white; width: 16px; height: 16px; animation: spin 1s linear infinite; display: inline-block; vertical-align: middle; margin-right: 8px; }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* Autocomplete Suggestions */
        .autocomplete-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 0 0 16px 16px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            display: none;
        }
        .autocomplete-suggestions.active { display: block; }
        .autocomplete-item { padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #f3f4f6; font-size: 0.9rem; color: #333; text-align: left; }
        .autocomplete-item:hover { background-color: #f9fafb; color: var(--accent-color); }
        .autocomplete-item:last-child { border-bottom: none; }
        .autocomplete-item strong { display: block; margin-bottom: 2px; }
        .autocomplete-item small { color: #6b7280; }

        /* Category Filters */
        .category-filters {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 1rem;
            margin-bottom: 0;
            justify-content: flex-start;
            flex-wrap: wrap;
            width: 100%;
        }

        .filter-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            flex: 1;
            min-width: 0;
        }

        .filter-toggle {
            display: none; /* Desktop: ausgeblendet */
            background: white;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
            padding: 0;
            color: var(--text-color);
            transition: transform 0.3s ease;
        }
        .filter-toggle:hover {
            background: var(--bg-color);
            color: var(--accent-color);
        }

        .shop-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .sort-select {
            width: auto;
            padding: 0.6rem 2rem 0.6rem 1rem;
            border-radius: 20px;
            background-color: white;
            border: 1px solid #ddd;
            cursor: pointer;
            font-size: 0.9rem;
            box-shadow: none;
        }
        .sort-select:hover { border-color: var(--accent-color); }

        .category-btn {
            background: white;
            color: var(--text-color);
            border: 1px solid #ddd;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            white-space: nowrap;
            width: auto;
            transition: all 0.2s;
        }

        .category-btn:hover, .category-btn.active {
            background: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
            transform: translateY(-2px);
        }

        /* Tracking Timeline */
        .tracking-timeline {
            position: relative;
            padding: 10px 0;
            margin-top: 2rem;
        }
        
        /* Alte globale Linie entfernen */
        .tracking-timeline::before { display: none; }

        .timeline-item {
            display: flex; 
            gap: 1.5rem; 
            padding-bottom: 2.5rem; /* Platz für die Verbindungslinie */
            position: relative; 
            opacity: 0.4; 
            transition: all 0.5s ease;
            animation: slideInTimeline 0.5s ease-out forwards;
        }
        
        .timeline-item:last-child {
            padding-bottom: 0;
        }

        /* Verbindungslinie zum nächsten Punkt */
        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 20px; /* Mitte des Icons (42px / 2 - 1px) */
            top: 42px; /* Start unterhalb des Icons */
            bottom: 0;
            width: 2px;
            background: #e5e7eb;
            transform: translateX(-50%);
        }

        /* Wenn Item aktiv ist, Linie einfärben (optional) */
        .timeline-item.active:not(:last-child)::after {
            background: var(--primary-color);
            opacity: 0.2;
        }

        .timeline-item.active { opacity: 1; }

        .timeline-icon {
            width: 42px; 
            height: 42px; 
            background: white; 
            border: 2px solid #e5e7eb; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            z-index: 1; 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: #9ca3af;
            box-shadow: 0 0 0 4px white; /* Weißer Rand trennt Icon von Linie */
            flex-shrink: 0;
        }

        .timeline-item.active .timeline-icon { 
            border-color: var(--primary-color); 
            background: var(--primary-color); 
            color: white; 
            transform: scale(1.1);
            box-shadow: 0 0 0 4px white, 0 4px 12px rgba(0,0,0,0.1);
        }

        /* Fehler-Status (Storniert) */
        .timeline-item.error .timeline-icon {
            border-color: #ef4444;
            background: #fee2e2;
            color: #ef4444;
        }

        .timeline-content { 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            padding-top: 8px;
        }

        .timeline-content strong {
            font-size: 1.05rem;
            color: var(--primary-color);
            margin-bottom: 4px;
        }

        .timeline-item.error .timeline-content strong {
            color: #ef4444;
        }

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

        @keyframes slideInTimeline {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: var(--final-opacity, 1); transform: translateY(0); }
        }

        /* Product Detail Page - Manufaktur Style */
        .product-detail-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            background: transparent;
            border-radius: 0;
            padding: 2rem 0;
            box-shadow: none;
            align-items: center;
        }

        .detail-image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: #f5f5f5;
            aspect-ratio: 4/5;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .detail-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .detail-image-container:hover img {
            transform: scale(1.05);
        }

        .detail-content {
            padding: 1rem 0;
        }

        .category-badge {
            background: transparent;
            color: #9ca3af;
            padding: 0;
            border-radius: 0;
            font-size: 0.85rem;
            font-weight: 600;
            display: block;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .detail-content h1 {
            font-family: "Times New Roman", Times, serif;
            font-size: 3.5rem;
            margin: 0 0 1.5rem 0;
            line-height: 1.1;
            font-weight: 400;
            color: var(--primary-color);
        }

        .detail-price {
            font-family: "Times New Roman", Times, serif;
            font-size: 2rem;
            font-weight: 400;
            color: var(--text-color);
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            width: 100%;
        }

        .detail-desc {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 2.5rem;
        }

        .detail-controls {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .back-link {
            background: none;
            color: #666;
            padding: 0;
            width: auto;
            margin-bottom: 2rem;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .back-link:hover {
            background: none;
            color: var(--primary-color);
            transform: translateX(-5px);
            box-shadow: none;
        }

        /* Manufaktur Buttons (Modern & Sharp) */
        .detail-controls button {
            border-radius: 99px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            border: 1px solid var(--primary-color);
            padding: 1rem 2rem;
            transition: all 0.3s ease;
            box-shadow: none;
        }

        .detail-controls .checkout-btn-large {
            background-color: var(--primary-color);
            color: white;
        }
        .detail-controls .checkout-btn-large:hover {
            background-color: transparent;
            color: var(--primary-color);
            transform: none;
        }

        .detail-controls button.secondary {
            background-color: transparent;
            color: var(--primary-color);
        }
        .detail-controls button.secondary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: none;
        }

        /* Accordion (Details & Pflege) */
        .detail-accordion {
            margin-top: 3rem;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .accordion-item {
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .accordion-header {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem 0;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: "Times New Roman", Times, serif;
            font-size: 1.2rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        .accordion-header:hover { background: none; transform: none; box-shadow: none; opacity: 0.7; }
        .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .accordion-content .inner { padding-bottom: 1.5rem; color: #666; line-height: 1.6; font-size: 0.95rem; }

        /* Skeleton Loading Animation */
        .skeleton-pulse {
            background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
            background-size: 200% 100%;
            animation: skeletonLoading 1.5s infinite ease-in-out;
        }

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

        .skeleton-card {
            pointer-events: none; /* Nicht klickbar während des Ladens */
        }

        /* Auth Styles */
        .auth-tab.active {
            color: var(--primary-color) !important;
            border-bottom-color: var(--primary-color) !important;
            font-weight: bold;
        }

        /* Account Dashboard */
        .account-container {
            max-width: 800px;
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 2rem;
            align-items: start;
        }

        @media (max-width: 800px) {
            .account-container {
                grid-template-columns: 1fr;
            }
        }

        /* Sidebar */
        .account-sidebar {
            background: white;
            border-radius: 24px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }

        .profile-summary {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #f3f4f6;
        }

        .logout-icon-btn {
            display: none;
        }

        .profile-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .profile-info h3 { margin: 0; font-size: 1rem; }
        .profile-info span { font-size: 0.85rem; color: #666; display: block; max-width: 160px; overflow: hidden; text-overflow: ellipsis; }

        .account-nav {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .nav-item {
            background: transparent;
            color: var(--text-color);
            text-align: left;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            box-shadow: none;
        }

        .nav-item:hover {
            background: #f9fafb;
            color: var(--primary-color);
            transform: none;
        }

        .nav-item.active {
            background: #f3f4f6;
            color: var(--primary-color);
            font-weight: 700;
        }

        .nav-item.logout {
            margin-top: 1rem;
            color: #ef4444;
        }
        .nav-item.logout:hover {
            background: #fee2e2;
        }

        /* Content Area */
        .account-content {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: var(--shadow);
            min-height: 400px;
        }

        /* Stats Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background: #f9fafb;
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Recent Order Preview */
        .recent-order-card {
            background: #f9fafb;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.2s ease;
            border: 1px solid #f3f4f6;
        }
        .recent-order-card:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .recent-order-images {
            display: flex;
            flex-shrink: 0;
        }

        .recent-order-item-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
            background: #eee;
        }
        /* Stacking effect */
        .recent-order-item-img:not(:first-child) {
            margin-left: -15px;
        }

        .recent-order-info {
            line-height: 1.4;
        }

        /* Password Toggle (Re-added for Settings) */
        .password-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 10px;
        }
        .password-wrapper input {
            margin-bottom: 0;
            padding-right: 45px; /* Platz für Icon */
        }
        .password-toggle {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            width: 40px;
            height: 40px;
            padding: 0;
            color: #9ca3af;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none !important;
        }
        .password-toggle:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-50%);
        }

        .order-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .order-card {
            border: 1px solid #eee;
            padding: 1rem;
            border-radius: 12px;
            transition: all 0.2s;
        }
        .order-card:hover { background: #f9fafb; }

        .status-badge { padding: 4px 8px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
        .status-badge.success { background: #d1fae5; color: #065f46; }
        .status-badge.pending { background: #fef3c7; color: #92400e; }
        .status-badge.cancelled { background: #fee2e2; color: #991b1b; }

        .address-card {
            background: #f9fafb;
            padding: 1.5rem;
            border-radius: 12px;
            line-height: 1.6;
        }

        .order-actions {
            display: flex;
            gap: 10px;
            margin-top: 1rem;
        }
        
        button.small {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .order-details-list {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
            animation: fadeIn 0.3s ease-out;
        }

        .order-detail-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f9fafb;
        }
        .order-detail-item:last-child { border-bottom: none; }

        /* Utility Classes for Responsive Forms & Layouts */
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .form-grid-zip {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 10px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-4 { margin-bottom: 1rem; }

        /* Custom Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 11000; /* Higher than everything else */
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 24px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            max-width: 400px;
            width: 90%;
            text-align: center;
            transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-content h3 {
            margin-top: 0;
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .modal-content p {
            color: #666;
            margin-bottom: 2rem;
        }

        .modal-actions {
            display: flex;
            gap: 1rem;
        }