/**
 * Registration Page Styles
 *
 * @package LebeBewusst
 * @since 1.0.0
 */

/* Registration Container */
.lb-registration-container {
    display: flex;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Left Side - Registration Form */
.lb-registration-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 40px;
    overflow-y: auto;
}
.lb-author-info h4{
    color: #f9f9f9;
}
.lb-registration-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* Header */
.lb-registration-header {
    margin-bottom: 40px;
}

/* Elementor Header ausblenden (Registration) */
header.elementor.elementor-location-header, footer { display: none !important; }
.lb-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #191970;
    margin: 0 0 30px 0;
    text-align: center;
}

.lb-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    width: 100%;
}

.lb-brand-logo {
    height: 100px;
    width: auto;
}

/* Progress Indicator */
.lb-progress-indicator {
    margin-bottom: 40px;
}

.lb-progress-line {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 20px;
    position: relative;
}

.lb-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #191970 0%, #4B0082 100%);
    border-radius: 2px;
    width: 25%;
    transition: width 0.3s ease;
}

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

.lb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.lb-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.lb-step-circle.active {
    background: #191970;
    color: white;
}

.lb-step-circle.completed {
    background: #4B0082;
    color: white;
}

.lb-step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* Form Steps */
.lb-form-step {
    display: none;
}

.lb-form-step.active {
    display: block;
}

.lb-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #191970;
    margin: 0 0 10px 0;
}

.lb-step-description {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

/* Form Grid */
.lb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.lb-form-group.full-width {
    grid-column: 1 / -1;
}

.lb-form-group {
    display: flex;
    flex-direction: column;
}

.lb-form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.lb-required-hint {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
}

label.required::after,
.lb-checkbox-label.required::after {
    content: ' *';
    color: #d32f2f;
}

.lb-input-with-icon {
    position: relative;
}

.lb-input-with-icon input[type="password"],
.lb-input-with-icon input[type="text"],
.lb-input-with-icon input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    padding-right: 44px; /* Platz für Icon */
}

.lb-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12Z"/><circle cx="12" cy="12" r="3"/></svg>') no-repeat center / 18px 18px;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.lb-toggle-password[data-visible="true"] {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17.94 17.94A10.94 10.94 0 0 1 12 19c-7 0-11-7-11-7a21.78 21.78 0 0 1 5.06-5.94"/><path d="M1 1l22 22"/><path d="M10.58 10.58a3 3 0 0 0 4.24 4.24"/><path d="M9.9 4.24A10.94 10.94 0 0 1 12 5c7 0 11 7 11 7a21.8 21.8 0 0 1-3.22 4.19"/></svg>');
}

.lb-password-strength {
    margin-top: 8px;
}

.lb-strength-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.lb-strength-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: #d32f2f;
    transition: width 0.3s ease, background 0.3s ease;
}

.lb-strength-text {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.lb-form-input,
.lb-form-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s ease;
}

.lb-form-input:focus,
.lb-form-select:focus {
    outline: none;
    border-color: #191970;
}

.lb-input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: help;
}

/* Radio Buttons */
.lb-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lb-radio-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lb-profile-content {
    flex: 1;
}

.lb-profile-content strong {
    display: block;
    color: #191970;
    font-size: 16px;
    margin-bottom: 4px;
}

.lb-profile-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.lb-profile-note {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #191970;
    margin-top: 15px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.lb-profile-note strong {
    color: #191970;
}

.lb-radio-label:hover {
    border-color: #191970;
}

.lb-radio-label input[type="radio"] {
    display: none;
}

.lb-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.lb-radio-label input[type="radio"]:checked + .lb-radio-custom {
    border-color: #191970;
    background: #191970;
}

.lb-radio-label input[type="radio"]:checked + .lb-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Checkboxes */
.lb-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lb-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.lb-checkbox-label input[type="checkbox"] {
    display: none;
}

.lb-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lb-checkbox-label input[type="checkbox"]:checked + .lb-checkbox-custom {
    border-color: #191970;
    background: #191970;
}

.lb-checkbox-label input[type="checkbox"]:checked + .lb-checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* PRO Account Info */
.lb-pro-account-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #191970;
}

.lb-pro-account-info h4 {
    color: #191970;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.lb-pro-account-info p {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.lb-pro-account-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lb-pro-account-info li {
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Payment Methods */
.lb-payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lb-payment-method {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lb-payment-method:hover {
    border-color: #191970;
}

.lb-payment-method input[type="radio"] {
    display: none;
}

.lb-payment-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.lb-payment-method input[type="radio"]:checked + .lb-payment-custom {
    border-color: #191970;
    background: #191970;
}

.lb-payment-method input[type="radio"]:checked + .lb-payment-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.lb-payment-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Order Summary */
.lb-order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.lb-order-summary h4 {
    color: #191970;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.lb-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.lb-summary-item.lb-total {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #191970;
}

/* Navigation Buttons */
.lb-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.lb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    height: 54px;
    min-width: 140px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(240, 152, 25, 0.28);
}

.lb-btn-primary {
    background-image: linear-gradient(to right, #F09819 0%, #EDDE5D 51%, #F09819 100%);
    background-size: 200% auto;
    color: white;
}

.lb-btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(240, 152, 25, 0.4);
}

.lb-btn-secondary {
    background: white;
    color: #191970;
    border: 2px solid #191970;
    box-shadow: 0 4px 12px rgba(25, 25, 112, 0.15);
}

.lb-btn-secondary:hover {
    background: #191970;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 25, 112, 0.3);
}

.lb-btn-icon {
    transition: transform 0.2s ease;
}

.lb-btn:hover .lb-btn-icon {
    transform: translateX(2px);
}

.lb-btn-secondary:hover .lb-btn-icon {
    transform: translateX(-2px);
}

/* Right Side - Testimonial */
.lb-registration-testimonial-section {
    flex: 1;
    background: linear-gradient(135deg, #191970 0%, #4B0082 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
}

.lb-testimonial-content {
    max-width: 400px;
    text-align: center;
}

.lb-testimonial-rating {
    margin-bottom: 20px;
}

.lb-testimonial-rating i {
    color: #FFD700;
    font-size: 20px;
    margin: 0 2px;
}

.lb-testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-style: italic;
}

.lb-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.lb-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.lb-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lb-author-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.lb-author-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.lb-testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.lb-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lb-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Ensure arrow icons are white */
/* Inline-SVG zentriert anzeigen */
.lb-nav-btn svg { display: block; margin: 0 auto; }

.lb-testimonial-dots {
    display: flex;
    gap: 8px;
}

.lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lb-dot.active {
    background: white;
}

/* Footer */
.lb-registration-footer {
    margin-top: auto;
    padding-top: 20px;
}

.lb-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.lb-footer-links {
    display: flex;
    gap: 20px;
}

.lb-footer-links a {
    color: #999;
    text-decoration: none;
}

.lb-footer-links a:hover {
    color: #191970;
}

/* Responsive */
@media (max-width: 768px) {
    .lb-registration-container {
        flex-direction: column;
    }

    .lb-registration-testimonial-section {
        display: none;
    }

    .lb-form-grid {
        grid-template-columns: 1fr;
    }

    .lb-payment-methods {
        grid-template-columns: 1fr;
    }

    .lb-footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Subscription Options */
.lb-subscription-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 10px;
}

.lb-subscription-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.lb-subscription-option:hover {
    border-color: #191970;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 25, 112, 0.15);
}

.lb-subscription-option.selected {
    border-color: #191970;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    box-shadow: 0 8px 25px rgba(25, 25, 112, 0.2);
}

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

.lb-subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.lb-subscription-title {
    font-size: 18px;
    font-weight: 700;
    color: #191970;
    margin: 0;
}

.lb-subscription-price {
    font-size: 24px;
    font-weight: 800;
    color: #191970;
    margin: 0;
}

.lb-subscription-savings {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}

.lb-subscription-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.lb-subscription-features {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.lb-subscription-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lb-subscription-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.lb-subscription-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.lb-loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Payment Notice */
.lb-payment-notice {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 20px;
}

.lb-payment-notice h4 {
    color: #191970;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.lb-payment-notice p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
}

.lb-payment-notice p:last-child {
    margin-bottom: 0;
}

.lb-payment-notice strong {
    color: #191970;
}

.lb-payment-notice ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
    color: #666;
}

.lb-payment-notice li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Error/Success Messages */
.lb-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.lb-message.lb-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.lb-message.lb-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Enhanced Error Messages */
.lb-enhanced-error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.lb-error-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fed7d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-error-content {
    flex: 1;
}

.lb-error-content h3 {
    margin: 0 0 8px 0;
    color: #c53030;
    font-size: 18px;
    font-weight: 600;
}

.lb-error-content p {
    margin: 0 0 16px 0;
    color: #4a5568;
    line-height: 1.5;
    font-size: 14px;
}

.lb-error-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lb-error-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.lb-error-btn-primary {
    background: #191970;
    color: white;
}

.lb-error-btn-primary:hover {
    background: #4B0082;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 25, 112, 0.3);
}

.lb-error-btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.lb-error-btn-secondary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .lb-enhanced-error {
        flex-direction: column;
        text-align: center;
    }

    .lb-error-actions {
        justify-content: center;
    }
}

/* Email Validation Styles */
.lb-email-validation {
    margin-top: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lb-email-validation.lb-email-checking {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.lb-email-validation.lb-email-available {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.lb-email-validation.lb-email-exists {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

.lb-email-validation-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 1px;
}

.lb-email-validation-text {
    flex: 1;
}

.lb-email-validation-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lb-email-validation-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.lb-email-validation-btn-primary {
    background: #191970;
    color: white;
}

.lb-email-validation-btn-primary:hover {
    background: #4B0082;
}

.lb-email-validation-btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.lb-email-validation-btn-secondary:hover {
    background: #edf2f7;
}

/* Checkout Container */
.lb-checkout-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    margin-top: 20px;
}

/* Checkout Redirect */
.woocommerce-checkout-redirect {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    text-align: center;
    margin-top: 20px;
}

.lb-checkout-info h3 {
    color: #191970;
    font-size: 24px;
    margin-bottom: 15px;
}

.lb-checkout-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.lb-redirect-message {
    background: linear-gradient(135deg, #191970 0%, #4B0082 100%);
    color: white;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.lb-redirect-message p {
    color: white;
    margin: 5px 0;
}

.lb-redirect-message .fa-spinner {
    margin-right: 8px;
}

.lb-checkout-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.lb-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #191970;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* WooCommerce Checkout Integration */
.lb-checkout-container .woocommerce-checkout {
    max-width: none;
    padding: 0;
    background: transparent;
    min-height: auto;
}

.lb-checkout-container .woocommerce-billing-fields,
.lb-checkout-container .woocommerce-shipping-fields,
.lb-checkout-container #order_review,
.lb-checkout-container #payment {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.lb-checkout-container .woocommerce-billing-fields h3,
.lb-checkout-container .woocommerce-shipping-fields h3,
.lb-checkout-container #order_review_heading {
    font-size: 18px;
    margin-bottom: 15px;
    color: #191970;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

.lb-checkout-container .form-row input,
.lb-checkout-container .form-row select,
.lb-checkout-container .form-row textarea {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.lb-checkout-container .form-row input:focus,
.lb-checkout-container .form-row select:focus,
.lb-checkout-container .form-row textarea:focus {
    border-color: #191970;
    box-shadow: 0 0 0 2px rgba(25, 25, 112, 0.1);
}

.lb-checkout-container #place_order {
    background: linear-gradient(135deg, #191970 0%, #4B0082 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.lb-checkout-container #place_order:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(25, 25, 112, 0.3);
}

/* Payment Options */
.lb-payment-options {
    margin: 20px 0;
}

.lb-payment-options h4 {
    color: #191970;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.lb-payment-option {
    margin-bottom: 12px;
}

.lb-payment-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lb-payment-label:hover {
    border-color: #191970;
}

.lb-payment-radio {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.lb-payment-title {
    font-weight: 500;
    color: #333;
}

.lb-payment-actions {
    margin-top: 25px;
    text-align: center;
}
