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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #F2F2F2;
            padding-bottom: 80px; /* Space for mobile sticky footer */
        }

        .container {
            max-width: 720px;
            margin: 0 auto;
            padding: 16px;
        }

        /* Header */
        .header {
            background: #fc0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-size: 18px;
            font-weight: bold;
            color: #000;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .logo-icon {
            font-size: 20px;
        }

        .logo img{
            width:250px;
        }

        .header-trust {
            display: none;
            font-size: 12px;
            color: #666;
        }

        .back-btn {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            padding: 6px 12px;
            border-radius: 20px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #e9ecef;
            color: #000;
        }

        /* Trust Banner */
        .trust-banner {
            background: #000;
            color: white;
            padding: 10px;
            text-align: center;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .trust-banner-icon {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Progress Bar - More Prominent */
        .progress-wrapper {
            background: white;
            padding: 20px 16px;
            margin-bottom: 12px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .progress-title {
            font-size: 14px;
            color: #666;
        }

        .progress-percentage {
            font-size: 18px;
            font-weight: bold;
            color: #28a745;
        }

        .progress-bar-container {
            position: relative;
            height: 8px;
            background: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .progress-bar-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, #FFD700, #FFA500);
            border-radius: 10px;
            transition: width 0.5s ease;
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
        }

        .progress-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .progress-step {
            text-align: center;
            position: relative;
        }

        .step-icon {
            width: 36px;
            height: 36px;
            margin: 0 auto 6px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            color: #adb5bd;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .progress-step.active .step-icon {
            background: #fc0;
            color: #000;
            border-color: #fc0;
            box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
            transform: scale(1.1);
        }

        .progress-step.completed .step-icon {
            background: #28a745;
            color: white;
            border-color: #28a745;
        }

        .progress-step.completed .step-icon::after {
            position: absolute;
            font-size: 16px;
        }
        .ohnemehrkosten{
            font-size:11px;
        }

        .step-label {
            font-size: 12px;
            color: #adb5bd;
            font-weight: 500;
        }

        .progress-step.active .step-label {
            color: #000;
            font-weight: 600;
        }

        .progress-step.completed .step-label {
            color: #28a745;
        }

        /* Time Remaining */
        .time-remaining {
            background: #fff3cd;
            border: 1px solid #ffc107;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .time-remaining-icon {
            font-size: 20px;
        }

        .time-remaining-text {
            flex: 1;
        }

        .time-remaining-text strong {
            color: #856404;
        }

        /* Form Container */
        .form-container {
            background: white;
            padding: 24px 8px;
            border-radius: 0px 0px 12px 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-bottom: 20px;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

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

        .step-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #000;
        }

        .step-description {
            color: #666;
            margin-bottom: 24px;
            font-size: 15px;
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 9px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 5px;
        }

        label {
            display: block;
            font-weight: 600;
            margin: 0px 0 8px 0;
            color: #333;
            font-size: 16px;
        }

        .required {
            color: #dc3545;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            border: 1.5px solid #dee2e6;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.2s ease;
            background: white;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
        }

        /* Radio Cards */
        .radio-cards {
            display: grid;
            gap: 12px;
        }

        .radio-card {
            position: relative;
            cursor: pointer;
        }

        .radio-card input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .radio-card label {
            display: block;
            padding: 12px;
            border: 2px solid #dee2e6;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            background: #fafafa;
            margin: 0;
        }

        .radio-card:hover label {
            border-color: #FFD700;
            background: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .radio-card input[type="radio"]:checked + label {
            border-color: #FFD700;
            background: linear-gradient(135deg, #fffef5, #fff8e1);
            box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
        }

        .radio-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .radio-card-icon {
            font-size: 24px;
        }

        .radio-card-title {
            font-weight: bold;
            font-size: 14px;
            color: #000;
        }

        .radio-card-description {
            font-size: 14px;
            color: #666;
            margin-left: 36px;
        }

        .radio-card-badge {
            position: absolute;
            top: -8px;
            right: 16px;
            background: #dc3545;
            color: white;
            padding: 4px 10px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: bold;
        }

        /* Checkbox Options */
        .checkbox-option {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .checkbox-option:hover {
            background: #e9ecef;
        }

        .checkbox-option input[type="checkbox"] {
            width: auto;
            margin: 0;
            margin-top: 2px;
        }

        .checkbox-option label {
            cursor: pointer;
            flex: 1;
            margin: 0;
            font-weight: normal;
        }

        .checkbox-option-title {
            font-weight: 600;
            margin-bottom: 4px;
            color: #000;
        }

        .checkbox-option-description {
            font-size: 13px;
            color: #666;
        }

        /* Buttons */
        .form-buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .btn {
            padding: 14px 24px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background: #000;
            color: white;
            flex: 1;
        }

        .btn-primary:hover:not(:disabled) {
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #666;
            border: 1px solid #dee2e6;
            flex: 0.5;
        }

        .btn-secondary:hover {
            background: #e9ecef;
            color: #000;
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Summary Step */
        .summary-section {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .summary-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #000;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 14px;
        }

        .summary-label {
            color: #666;
        }

        .summary-value {
            font-weight: 600;
            color: #000;
        }

        /* Price Display (Step 4 only) */
        .price-reveal {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            border: 2px solid #ffc107;
            border-radius: 4px;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
            animation: slideIn 0.5s ease;
        }

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

        .price-reveal-title {
            font-size: 18px;
            margin-bottom: 16px;
            color: #856404;
        }

        .price-main {
            font-size: 36px;
            font-weight: bold;
            color: #dc3545;
            margin-bottom: 8px;
        }
        /* Wallet Section */
        /* Ersetzen Sie die bestehende .wallet-section Definition mit: */

        .price-subtitle {
            font-size: 14px;
            color: #856404;
            margin-bottom: 16px;
        }

        .price-breakdown {
            background: white;
            border-radius: 4px;
            padding: 16px;
            margin-top: 16px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 11px;
        }

        .price-row.total {
            border-top: 2px solid #dee2e6;
            padding-top: 12px;
            font-weight: bold;
            font-size: 14px;
        }

        /* Success Animation */
        .success-container {
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 36px;
            color: white;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        .success-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #000;
        }

        .success-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
        }

        /* Trust Indicators */
        .trust-indicators {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin: 20px 0;
        }

        .trust-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 4px;
            font-size: 14px;
        }

        .trust-indicator-icon {
            font-size: 20px;
        }

        /* Live Activity */
        .live-activity {
            position: fixed;
            bottom: 90px;
            left: 16px;
            right: 16px;
            max-width: 320px;
            background: white;
            padding: 12px;
            border-radius: 4px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 50;
            animation: slideUp 0.5s ease;
        }

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

        .live-activity-icon {
            width: 32px;
            height: 32px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .live-activity-text {
            flex: 1;
            font-size: 13px;
        }

        .live-activity-close {
            background: none;
            border: none;
            font-size: 18px;
            color: #999;
            cursor: pointer;
        }

        /* Mobile Sticky Footer */
        .mobile-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 12px 16px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 90;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-footer-info {
            font-size: 12px;
            color: #666;
        }

        .mobile-footer-info strong {
            color: #000;
            font-size: 14px;
        }

        /* Error Messages */
        .error-message {
            color: #dc3545;
            font-size: 13px;
            margin-top: 4px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        input.error {
            border-color: #dc3545;
        }

        /* Loading State */
        .spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #dc3545;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (min-width: 480px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
            
            .form-row.single {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 768px) {
            .container {
                padding: 24px;
            }

            .header-trust {
                display: block;
            }

            .progress-steps {
                display: flex;
                justify-content: space-between;
            }

            .trust-indicators {
                grid-template-columns: repeat(4, 1fr);
            }

            .mobile-footer {
                display: none;
            }

            body {
                padding-bottom: 0;
            }

            .form-container {
                padding: 32px;
            }

            .step-title {
                font-size: 28px;
            }

            .live-activity {
                left: 24px;
                bottom: 24px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus states */
        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid #0066cc;
            outline-offset: 2px;
        }

        .form-footer {
  background-color: #fff;
  padding: 20px 11px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #000;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-copy {
  margin: 0 12px 0 0;
  font-weight: 500;
}

.footer-nav a {
  color: #000;
  text-decoration: none;
  padding: 0 4px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.sep {
  color: #000;
  padding: 0 4px;
}

.footer-logo img {
  display: inline-block;
  height: 35px;
  margin: 0 auto;
}
.hero-subtitle.small{font-size:11px;}
.hero-subtitle-mobil.small{    font-size: 11px;
    max-width: 1200px;
    margin: 8px auto;
    text-align: center;}

         /* Payment Icons Container */
.payment-methods-container {
    text-align: center;
    margin-top: 12px;
    padding: 0 8px;
}

.payment-methods-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 40px;
    height: 26px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #ccc;
}

.payment-icon img {
    width: 32px;
    height: auto;
    max-height: 20px;
}

/* Spezielle Styles für bestimmte Icons */
.payment-icon.paypal img {
    width: 32px;
}

.payment-icon.klarna {
    background: #FFB3C7;
    border-color: #FFB3C7;
}

.payment-icon.klarna img {
    width: 38px;
}

/* Mobile Optimierung */
@media (max-width: 480px) {
    .payment-icons {
        gap: 6px;
    }
    
    .payment-icon {
        width: 36px;
        height: 24px;
    }
    
    .payment-icon svg {
        width: 28px;
        max-height: 18px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .payment-icon {
        background: #2a2a2a;
        border-color: #444;
    }
    
    .payment-methods-label {
        color: #aaa;
    }
}

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

.payment-methods-container {
    animation: fadeInUp 0.4s ease-out;
}

.duration-options {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .duration-item {
            position: relative;
            width: 100%;
        }

        .duration-item input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .duration-label {
            display: block;
            position: relative;
            padding: 24px 20px;
            border: 2.5px solid #e5e7eb;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(145deg, #ffffff, #f9fafb);
            overflow: visible;
        }

        /* Hover Effect */
        .duration-label:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            border-color: #fbbf24;
        }

        /* Selected State */
        .duration-item input[type="radio"]:checked + .duration-label {
            border-color: #fbbf24;
            background: linear-gradient(145deg, #fffbeb, #fef3c7);
            box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1), 
                        0 10px 40px rgba(251, 191, 36, 0.15);
        }

        /* Selected Checkmark */
        .duration-item input[type="radio"]:checked + .duration-label::before {
            content: '✓';
            position: absolute;
            top: 20px;
            right: 20px;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 16px;
            animation: scaleIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Badge */
        .savings-badge {
            position: absolute;
            top: -14px;
            right: 20px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 6px 16px;
            border-radius: 0 0 12px 12px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
            z-index: 10;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Content Styling */
        .duration-title {
            font-size: 20px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 4px;
            text-align: center;
        }

        .price-display {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 6px;
            margin-bottom: 4px;
        }

        .price-value {
            font-size: 32px;
            font-weight: 800;
            color: #1f2937;
            line-height: 1;
        }

        .price-symbol {
            font-size: 20px;
            font-weight: 600;
            color: #4b5563;
        }

        .price-interval {
            font-size: 14px;
            color: #6b7280;
            text-align: center;
            margin-bottom: 16px;
        }

        .total-section {
            background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 16px;
            text-align: center;
        }

        .total-label {
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 4px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .total-value {
            font-size: 20px;
            font-weight: 700;
            color: #1f2937;
        }

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

        .benefit-point {
            font-size: 13px;
            color: #4b5563;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .benefit-icon {
            color: #10b981;
            font-weight: bold;
            font-size: 16px;
        }

        /* Special styling for discounted option */
        .duration-item:has(.savings-badge) .price-value {
            color: #10b981;
        }

        .duration-item:has(.savings-badge) .benefit-point {
            color: #059669;
            font-weight: 500;
        }

        /* Tablet and Desktop */
        @media (min-width: 640px) {
            .checkout-container {
                padding: 40px;
            }

            .section-title {
                font-size: 36px;
            }

            .section-subtitle {
                font-size: 18px;
            }

            .duration-options {
                flex-direction: row;
                gap: 20px;
            }

            .duration-item {
                flex: 1;
            }

            .duration-title {
                font-size: 22px;
            }

            .price-value {
                font-size: 36px;
            }

            .savings-badge {
                font-size: 13px;
                padding: 8px 20px;
                top: -16px;
                right: 24px;
            }
        }

        @media (min-width: 768px) {
            .checkout-container {
                padding: 48px;
            }

            .duration-label {
                padding: 32px 24px;
            }

            .price-value {
                font-size: 28px;
            }

            .total-value {
                font-size: 24px;
            }
        }

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

        .duration-item {
            animation: slideUp 0.5s ease-out forwards;
        }

        .duration-item:nth-child(2) {
            animation-delay: 0.1s;
        }
        /* Payment Methods Section Styles */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option-card label {
    display: block;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option-card:hover label {
    border-color: #635BFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-option-card input[type="radio"]:checked + label {
    border-color: #635BFF;
    background: #f7f8ff;
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1);
}

.payment-option-card input[type="radio"]:checked + label::before {
    content: '✓';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 20px;
    height: 20px;
    background: #635BFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.payment-icon {
    font-size: 24px;
}

.payment-logo {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
}

.stripe-logo {
    background: #635BFF;
    color: white;
}

.paypal-logo {
    background: #FFC439;
    color: #003087;
}

.payment-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    justify-content: center;
}

/* Responsive */
@media (max-width: 480px) {
    
    .payment-logo {
        align-self: flex-end;
        margin-top: -24px;
    }
}

/* Payment Logos Styles */
.card-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.paypal-logo-img {
    height: 20px;
    width: auto;
}

/* Wallet Options */
.wallet-options {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.divider-with-text {
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}

.divider-with-text span {
    background: white;
    padding: 0 12px;
    font-size: 12px;
    color: #666;
    position: relative;
}

.divider-with-text::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e9ecef;
}

.wallet-buttons {
    display: flex;
    gap: 12px;
}

.wallet-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.apple-pay-btn img {
    height: 20px;
    filter: brightness(0) invert(1); /* Macht das Logo weiß */
}

.google-pay-btn {
    border: 1px solid #dadce0;
}

.google-pay-btn:hover {
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}

.google-pay-btn img {
    height: 20px;
}
.apple-pay {
    color: white;
}

.google-pay {
    background: white;
    border: 1px solid #dadce0;
}

.google-pay:hover {
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}

.apple-pay-logo {
    fill: white;
}

/* Alternative: Inline SVG Icons (falls Sie keine externen Dateien verwenden möchten) */
.payment-icon-visa {
    display: inline-block;
    width: 40px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

.payment-icon-mastercard {
    display: inline-block;
    width: 40px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Responsive Design */
@media (max-width: 480px) {
    .payment-logos {
        margin-top: 8px;
    }
    
    .card-logo,.paypal-logo-img {
        height: 16px !important;
    }
    
    .wallet-buttons {
        flex-direction: column;
    }
}
#googlePayButton img{
	max-width: 50px !important;
}

/* Kompakte Wallet-Integration */
.payment-methods-section {
            background: white;
            border-radius: 12px;
        }

        .payment-methods-section h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .payment-methods-section > p {
            font-size: 14px;
            color: #666;
            margin-bottom: 24px;
        }

        .payment-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .payment-option-card {
            position: relative;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .payment-option-card input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .payment-option-card label {
            display: block;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 16px;
            margin: 0;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .payment-option-card:hover label {
            border-color: #6366f1;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
        }

        /* Checkmark für ausgewählte Option */
        .payment-option-card input[type="radio"]:checked + label::before {
            content: '✓';
            position: absolute;
            top: 16px;
            left: 16px;
            width: 20px;
            height: 20px;
            background: #6366f1;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            animation: scaleIn 0.2s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .payment-option-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 36px;
        }

        .payment-option-left {
            flex: 1;
        }

        .payment-title {
            font-weight: 600;
            font-size: 15px;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .payment-subtitle {
            font-size: 13px;
            color: #6b7280;
        }

        .payment-logos {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-logo {
            height: 24px;
            width: auto;
            object-fit: contain;
        }

        .paypal-logo-img {
            height: 22px;
        }

        /* NEUE WALLET INTEGRATION - Kompakter und eleganter */
        .wallet-integration {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #f3f4f6;
            display: none; /* Wird per JS angezeigt wenn verfügbar */
        }

        .wallet-integration.show {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .wallet-hint {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 10px;
        }

        .wallet-hint-icon {
            width: 16px;
            height: 16px;
            background: #10b981;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
        }

        .wallet-options-compact {
            display: flex;
            gap: 8px;
        }

        .wallet-chip {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 16px;
            background: white;
            border: 1.5px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
            font-weight: 500;
            color: #374151;
        }

        .wallet-chip:hover {
            border-color: #6366f1;
            background: #f7f8ff;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
        }

        .wallet-chip:active {
            transform: translateY(0);
        }

        .wallet-chip-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wallet-chip-icon img,
        .wallet-chip-icon svg {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Apple Pay spezifisch */
        .wallet-chip.apple-pay {
            background: #000;
            color: white;
            border-color: #000;
        }

        .wallet-chip.apple-pay:hover {
            background: #1a1a1a;
            border-color: #1a1a1a;
        }

        /* Google Pay spezifisch */
        .wallet-chip.google-pay {
            border-color: #dadce0;
        }

        .wallet-chip.google-pay:hover {
            border-color: #4285f4;
            background: #f8f9fa;
        }

        /* Security Badge */
        .payment-security-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding: 12px;
            background: #f9fafb;
            border-radius: 8px;
            font-size: 13px;
            color: #6b7280;
        }

        .security-icon {
            color: #10b981;
            font-size: 16px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .payment-methods-section {
                padding: 20px 16px;
            }

            .payment-logos {
                align-self: flex-end;
                margin-top: -32px;
            }

            .wallet-integration {
        margin-top: 16px;
        padding-top: 16px;
    }

    .wallet-hint {
        font-size: 11px;
        margin-bottom: 12px;
    }

            .wallet-options-compact {
        flex-direction: column;
        gap: 10px;
    }

            .wallet-chip {
        width: 100%;
        padding: 14px;
        justify-content: center;
        font-size: 15px;
    }

    /* Apple Pay Button Mobile */
    .wallet-chip.apple-pay {
        background: #000;
        color: white;
        border: 2px solid #000;
        min-height: 48px; /* Touch-friendly height */
    }

    .wallet-chip.apple-pay .wallet-chip-icon img {
        height: 22px;
        width: auto;
    }

    /* Google Pay Button Mobile */
    .wallet-chip.google-pay {
        background: white;
        border: 2px solid #dadce0;
        min-height: 48px;
    }

    .wallet-chip.google-pay .wallet-chip-icon img {
        height: 20px;
        width: auto;
    }

    /* Bessere Touch-Targets */
    .wallet-chip:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

        }

        /* Disabled state für nicht verfügbare Wallets */
        .wallet-chip.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Loading animation */
        .wallet-detecting {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #6b7280;
            padding: 8px 0;
        }

        .wallet-detecting::before {
            content: '';
            width: 12px;
            height: 12px;
            border: 2px solid #e5e7eb;
            border-top-color: #6366f1;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        /* Zusätzliche Anpassungen für sehr kleine Screens */
@media (max-width: 360px) {
    .wallet-chip {
        font-size: 14px;
        padding: 12px;
    }
    
    .wallet-hint {
        font-size: 10px;
    }
}

/* Font Awesome Icon Styles */
.radio-card-icon i {
    font-size: 24px;
    color: #333;
    width: 30px;
    text-align: center;
}

.trust-indicator-icon i {
    font-size: 18px;
    color: #28a745;
}

.trust-banner-icon i {
    font-size: 20px;
    color: #FFD700;
    animation: pulse 2s infinite;
}

.live-activity-icon i {
    font-size: 16px;
    color: white;
}

/* Hover Effects */
.radio-card:hover .radio-card-icon i {
    color: #FFD700;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.radio-card input[type="radio"]:checked + label .radio-card-icon i {
    color: #FFD700;
}

/* Banner */
/* Dynamic Header Banner Styles */
.header-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
}

.banner-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
}

.banner-image {
  width: 100%;
  border-radius: 12px 12px 0px 0px;
  height: auto;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%) rotate(-5deg);
  background-color: #e53935;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  line-height: 1.3;
  transition: all 0.5s ease;
}

.banner-step-indicator {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.banner-step-title {
  font-size: 1.1rem;
}
/* Formularkarte */
#checkout{
  max-width:420px;margin:32px auto;padding:20px;
  background:#f7f7f8;border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  font-family:Arial, sans-serif;
}

/* Labels (optional) */
.mc-label{font-size:13px;color:#444;margin:8px 0 6px 2px}

/* Sichtbarer Container für die iFrames */
#card-number,#card-holder,#card-expiry,#card-cvc{
  background:#ffffff;border:1px solid #d1d5db;border-radius:10px;
  padding:12px 14px;              /* Padding auf dem CONTAINER, nicht im iFrame */
  min-height:48px;                /* Höhe, damit der iFrame “Platz” hat */
  display:flex;align-items:center;
  transition:border-color .2s, box-shadow .2s;
}

/* Fokus: Wenn der iFrame Focus hat, bubbled Mollie ein focus-within hoch */
#card-number:focus-within,#card-holder:focus-within,
#card-expiry:focus-within,#card-cvc:focus-within{
  border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

/* Button */
#checkout button{
  width:100%;margin-top:6px;padding:14px 16px;
  background:#2563eb;color:#fff;border:0;border-radius:10px;
  font-weight:700;font-size:16px;cursor:pointer;transition:filter .2s;
}
#checkout button:hover{filter:brightness(.95)}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.banner-image.fade-in {
  animation: fadeIn 0.5s ease;
}
.payment-logos img {
  max-width: 70px;
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .banner-overlay {
    font-size: 1rem;
    padding: 12px 24px;
    left: 30%;
  }
}

@media (max-width: 576px) {
  .banner-overlay {
    font-size: 0.65rem;
    padding: 8px 16px;
    top: 50%;
    left: 75%;
  }
  
  .banner-step-indicator {
    font-size: 0.4rem;
  }
  
  .banner-step-title {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
	.payment-subtitle{
		display: none;
	}
  #liveActivity {
    display: none !important;
  }
}