        body {
            font-family: 'Inter', 'Roboto', sans-serif;
            margin: 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            color: #1e293b;
            min-height: 100vh;
        }

        .submitbtn-disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .currency {
            color: #64748b;
        }

        input,
        select,
        textarea {
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: white;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        button {
            cursor: pointer;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        /* Containers */
        .zc-calculator-container,
        .zc-donation-container {
            max-width: 900px;
            min-width: 320px;
            margin: 20px auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            backdrop-filter: blur(10px);
        }

        .zc-donation-container {
            max-width: 100%;
            padding: 0;
            display: none;
        }

        h1 {
            text-align: center;
            color: #1e293b;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Accordions */
        .zc-accordion-item {
            margin-bottom: 16px;
            border: 2px solid #f1f5f9;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .zc-accordion-item:hover {
            border-color: #e2e8f0;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .zc-accordion-header {
            width: 100%;
            padding: 20px 24px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 1rem;
            color: #1e293b;
            transition: all 0.3s ease;
        }

        .zc-accordion-header:hover {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            color: #3b82f6;
        }

        .zc-accordion-content {
            padding: 24px;
            border-top: 1px solid #f1f5f9;
            display: none;
            background: white;
        }

        .zc-accordion-item.active .zc-accordion-content {
            display: block;
        }

        .zc-accordion-item.active .arrow {
            transform: rotate(180deg);
            color: #3b82f6;
        }

        .zc-accordion-item.active {
            border-color: #3b82f6;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
        }

        .zc-accordion-item.active .zc-accordion-header {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
        }

        /* Input Groups */
        .zc-input-group {
            padding-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .zc-input-group:last-child {
            padding-bottom: 0;
        }

        .zc-input-group label {
            flex: 1;
            padding-right: 20px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #374151;
            line-height: 1.5;
        }

        .zc-input-wrapper {
            position: relative;
            display: inline-block;
        }

        .zc-input-wrapper::after {
            content: var(--zc-currency-symbol, '€');
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .zc-calculator-container input[inputmode="decimal"] {
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 65px 12px 16px;
            width: 200px;
            background: #f8fafc;
            font-weight: 500;
            font-size: 0.95rem;
            text-align: right;
            color: #1e293b;
            transition: all 0.3s ease;
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield;
        }

        @media (max-width: 600px) {
            .zc-calculator-container input[inputmode="decimal"] {
                width: 100%;
            }
        }

        .zc-calculator-container input[inputmode="decimal"]:focus {
            border-color: #3b82f6;
            background: white;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .zc-calculator-container input[inputmode="decimal"]::-webkit-inner-spin-button,
        .zc-calculator-container input[inputmode="decimal"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* Total Sections */
        .total-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 24px;
            margin: 24px 0;
            border-radius: 12px;
            font-weight: 500;
            border: 2px solid #bae6fd;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e293b;
        }

        .total-row span:first-child {
            white-space: nowrap;
        }

        /* Period Section */
        .period-section {
            margin: 24px 0;
            border: 2px solid #f1f5f9;
            border-radius: 12px;
            padding: 24px;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .period-section h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 1.1rem;
            color: #1e293b;
        }

        .period-section img {
            width: 28px;
            height: 28px;
        }

        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .radio-group label {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            font-weight: 500;
        }

        .radio-group label:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .radio-group input[type="radio"] {
            margin: 0;
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #3b82f6;
        }

        .radio-group label.selected {
            border-color: #3b82f6;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        /* Donate Section */
        .donate-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 32px;
            padding: 24px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 16px;
            border: 2px solid #e2e8f0;
        }

        .donate-section img {
            width: 56px;
            height: 56px;
        }

        .donate-button {
            padding: 16px 48px;
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .donate-button:hover {
            background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .donate-button:disabled {
            background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
            cursor: not-allowed;
            opacity: 0.7;
            transform: none;
            box-shadow: none;
        }

        .arrow {
            margin-left: auto;
            color: #64748b;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        /* Progress Bar */
        .progress-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }

        .progress-dot {
            width: 16px;
            height: 16px;
            background: #cbd5e1;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .progress-dot.active {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .progress-line {
            height: 3px;
            width: 120px;
            background: #e2e8f0;
            margin: 0 12px;
            border-radius: 2px;
        }

        .progress-line.active {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        }

        /* Donation Sections */
        .zc-donation-sections {
            display: flex;
            gap: 12px;
        }

        .zc-donation-section {
            flex: 1 1 0;
            min-width: 0;
            background: white;
            padding: 16px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 2px solid #f1f5f9;
            transition: all 0.3s ease;
            box-sizing: border-box;
            overflow: visible;
        }

        .zc-donation-section:hover {
            border-color: #e2e8f0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .zc-section-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .zc-section-header h2 {
            color: #1e293b;
            font-weight: 600;
            font-size: 1.3rem;
            margin: 0;
        }

        /* Project Items */
        .project-item {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0px;
            gap: 12px;
            transition: all 0.3s ease;
            min-width: 0;
        }

        .project-item:hover {
            background: #f8fafc;
            margin: 0 -16px;
            padding: 16px 16px;
            border-radius: 8px;
        }

        .project-item:not(:last-child) {
            border-bottom: 1px solid #f1f5f9;
        }

        .project-label {
            color: #374151;
            font-size: 0.95rem;
            font-weight: 500;
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.5;
            word-break: normal;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .zc-amount-field {
            position: relative;
            display: inline-flex;
            align-items: center;
            background: #f7f7f7;
            padding: 5px 10px;
            flex-shrink: 0;
        }

        .zc-amount-field input[inputmode="decimal"] {
            border: none;
            border-radius: 0;
            width: 80px;
            background: transparent;
            font-weight: 500;
            font-size: 0.9rem;
            text-align: right;
            color: #424242;
            padding-right: 45px;
        }

        .zc-amount-field .currency {
            position: absolute;
            right: 10px;
            top: 53%;
            transform: translateY(-50%);
            color: #666;
            font-weight: 500;
            font-size: 0.9rem;
            pointer-events: none;
        }

        .currency-mad .zc-amount-field {
            flex-direction: column;
            justify-content: center;
            padding: 5px 10px;
        }

        .currency-mad .zc-amount-field input[inputmode="decimal"] {
            padding-right: 0 !important;
            text-align: center !important;
        }

        .currency-mad .zc-amount-field .currency {
            position: static !important;
            transform: none !important;
            font-size: 0.75rem !important;
            margin-top: 2px !important;
        }

        .zc-projects-list {
            background: white;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }

        .project-selector {
            padding: 16px 0;
            border-top: 2px solid #f1f5f9;
            margin-top: 16px;
        }

        .project-selector select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #374151;
            background-color: white;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        /* Form Styles */
        .zc-contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .zc-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .zc-form-group label {
            font-weight: 500;
            color: #374151;
            font-size: 0.95rem;
        }

        .zc-form-group input,
        .zc-form-group select,
        .zc-form-group textarea {
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: white;
            color: #1e293b;
            width: 100%;
            box-sizing: border-box;
        }

        .zc-contact-form {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }

        .zc-form-group.checkbox {
            flex-direction: row;
            align-items: center;
        }

        #organization-fields {
            display: none;
            gap: 15px;
        }

        #organization-fields .zc-form-group {
            margin-bottom: 15px;
        }

        /* Payment Styles from Second Document */
        .clickable-div {
            display: inline-block;
            border: 2px solid transparent;
            border-radius: 5px;
            cursor: pointer;
            position: relative;
        }

        .clickable-div.active {
            border-color: #2F4250 !important;
        }

        .clickable-div.active::after {
            content: "";
            height: 16px;
            width: 16px;
            background-color: #2F4250;
            border-radius: 16px;
            position: absolute;
            top: -8px;
            right: -8px;
            background-image: url('https://amel-elyatim.org/wp-content/uploads/2025/04/check-1.png');
            background-size: 9px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .clickable-div2 {
            display: inline-block;
            border: 2px solid #d1d1d1;
            border-radius: 5px;
            cursor: pointer;
            position: relative;
            vertical-align: top;
            margin: 2px;
        }

        .clickable-div2.active {
            border-color: #2F4250 !important;
        }

        .clickable-div2.active::after {
            content: "";
            height: 16px;
            width: 16px;
            background-color: #2F4250;
            border-radius: 16px;
            position: absolute;
            top: -8px;
            right: -8px;
            background-image: url('https://amel-elyatim.org/wp-content/uploads/2025/04/check-1.png');
            background-size: 9px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .zc-validate-payment-btn {
            background: linear-gradient(135deg, #596873 0%, #4e5d68 100%);
            color: #ffffff;
            padding: 15px 20px;
            border: none;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
            margin-top: 15px;
            margin-bottom: 20px;
            width: 100%;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 3px 12px rgba(89, 104, 115, 0.3);
            font-family: 'Inter', 'Roboto', sans-serif;
            letter-spacing: 0.2px;
            text-transform: none;
        }

        .zc-validate-payment-btn:hover {
            background: linear-gradient(135deg, #4e5d68 0%, #3d4a54 100%);
            transform: translateY(-1px);
            box-shadow: 0 5px 18px rgba(89, 104, 115, 0.4);
            filter: brightness(1.06);
        }

        .zc-validate-payment-btn.ready-to-submit {
            background: linear-gradient(135deg, #2b3035 0%, #15181a 100%) !important;
            box-shadow: 0 4px 15px rgba(21, 24, 26, 0.4) !important;
            animation: subtlePulseDzc 2s ease-in-out infinite;
        }

        .zc-validate-payment-btn.ready-to-submit:hover {
            box-shadow: 0 6px 20px rgba(21, 24, 26, 0.5) !important;
            filter: brightness(1.1);
            animation: none;
        }

        .zc-validate-payment-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(89, 104, 115, 0.3);
        }

        .zc-validate-payment-btn:disabled, .zc-validate-payment-btn.submitbtn-disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        @keyframes subtlePulseDzc {
            0%, 100% { box-shadow: 0 4px 15px rgba(21, 24, 26, 0.4); }
            50% { box-shadow: 0 4px 20px rgba(21, 24, 26, 0.6); }
        }

        .payment-icon {
            display: flex !important;
            flex-direction: column !important;
            width: 150px;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }

        .payments {
            display: flex;
        }

        .payments div {
            padding: 20px 5px;
        }

        .inner-container {
            padding: 5px;
            height: auto;
        }

        .fieldset-step2 {
            border: none;
            padding: 0;
            margin: 0;
        }

        /* Info Icons */
        .info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: linear-gradient(135deg, #64748b 0%, #475569 100%);
            color: white;
            font-size: 12px;
            line-height: 1;
            margin-left: 6px;
            cursor: help;
            position: relative;
            font-style: normal;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .info-icon:hover {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            transform: scale(1.1);
        }

        .info-icon::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 130%;
            left: 50%;
            transform: translateX(-50%);
            padding: 8px 12px;
            background-color: rgba(30, 41, 59, 0.95);
            color: white;
            font-size: 0.8rem;
            border-radius: 6px;
            visibility: hidden;
            opacity: 0;
            transition: all 0.2s ease;
            z-index: 1000;
            width: 200px;
            white-space: normal;
            text-align: left;
            line-height: 1.4;
            font-weight: 400;
            pointer-events: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .info-icon::before {
            content: '';
            position: absolute;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: rgba(30, 41, 59, 0.95);
            visibility: hidden;
            opacity: 0;
            transition: all 0.2s ease;
            z-index: 1001;
            pointer-events: none;
        }

        .info-icon:hover::after,
        .info-icon:hover::before {
            visibility: visible;
            opacity: 1;
        }

        /* Warning Message */
        .warning-message {
            color: #dc2626;
            margin-top: 12px;
            font-size: 0.95rem;
            text-align: center;
            display: none;
            padding: 12px 16px;
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 8px;
            font-weight: 500;
        }

        /* Back Button */
        .zc-back-button {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 500;
            margin: 20px auto;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
        }

        .zc-back-button:hover {
            background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(107, 114, 128, 0.4);
        }

        /* Payment Summary */
        .payment-summary {
            margin: 10px 0;
            padding: 15px;
            background: #f7f7f7;
            border-radius: 4px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            border-bottom: 1px solid #eee;
        }

        .summary-row.total {
            font-weight: bold;
            border-bottom: none;
            margin-top: 5px;
        }

        .tax-info {
            background: #e3f2fd;
            padding: 10px;
            border-radius: 4px;
            text-align: center;
            margin-top: 5px;
            line-height: 18.5px;
            text-align: left;
            padding: 8px 0;
            margin: 5px 0 5px;
            border-top: 1px solid rgba(0, 0, 0, .25);
            border-bottom: 1px solid rgba(0, 0, 0, .25);
        }

        .payment-info {
            margin-top: 5px;
            text-align: center;
            font-size: 0.9rem;
            color: #666;
        }

        .final-total-amount {
            width: 80%;
            text-align: right;
        }

        /* Style pour le tooltip au-dessus du texte */
        #anonymous-tooltip-message {
            position: fixed !important;
            bottom: auto !important;
            top: auto !important;
            margin-top: -60px !important;
        }

        /* Responsive */
        @media screen and (max-width: 1000px) {

            .zc-calculator-container,
            .zc-donation-container {
                min-width: 100%;
                width: 100%;
                margin: 0;
                padding: 16px;
                border-radius: 0;
                min-height: 100vh;
                box-sizing: border-box;
            }

            h1 {
                font-size: 1.8rem;
                margin-bottom: 24px;
                padding: 0 8px;
            }

            .zc-accordion-header {
                padding: 20px 16px;
                font-size: 1.1rem;
                font-weight: 600;
            }

            .zc-accordion-content {
                padding: 20px 16px;
            }

            .zc-input-group {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                padding-bottom: 20px;
            }

            .zc-input-group label {
                padding-right: 12px;
                margin-bottom: 0;
                flex: 1;
                font-size: 1rem;
                font-weight: 500;
                line-height: 1.4;
            }

            .zc-calculator-container input[inputmode="decimal"] {
                width: 140px;
                font-size: 1rem;
                padding: 14px 40px 14px 16px;
                border: 2px solid #e2e8f0;
            }

            .zc-input-wrapper::after {
                font-size: 1rem;
                right: 14px;
            }

            .donate-section {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                padding: 24px 16px;
                margin: 16px -16px 0;
            }

            .total-section {
                padding: 20px 16px;
                margin: 16px -16px;
                font-size: 1.1rem;
            }

            .total-row {
                font-size: 1.2rem;
                font-weight: 700;
            }

            .period-section {
                padding: 20px 16px;
                margin: 16px -16px;
            }

            .period-section h3 {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }

            .radio-group label {
                padding: 18px 16px;
                font-size: 1rem;
                font-weight: 500;
            }

            .radio-group input[type="radio"] {
                width: 18px;
                height: 18px;
            }

            .zc-donation-sections {
                flex-direction: column;
                gap: 20px;
            }

            .zc-donation-section {
                flex: 0 0 100%;
                max-width: 100%;
                width: 100%;
                padding: 20px 16px;
                box-sizing: border-box;
            }

            .zc-section-header h2 {
                font-size: 1.4rem;
            }

            .project-label {
                font-size: 0.95rem;
                font-weight: 600;
                width: 100%;
                white-space: normal;
                word-break: normal;
                overflow-wrap: break-word;
                line-height: 1.4;
                margin-bottom: 4px;
            }

            .project-item {
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 6px;
                padding: 12px 0;
            }

            .project-item input[inputmode="decimal"] {
                width: 90px;
                font-size: 1rem;
                padding: 10px 12px;
            }

            .donate-button {
                width: 100%;
                padding: 18px 16px;
                justify-content: center;
                font-size: 1.1rem;
                margin-top: 16px;
            }

            .zc-amount-field {
                display: inline-flex !important;
                align-items: center;
                width: 100%;
                background: #f1f5f9;
                border-radius: 8px;
                padding: 8px 12px;
                box-sizing: border-box;
            }

            .zc-amount-field input[inputmode="decimal"] {
                width: 100% !important;
                font-size: 1rem;
                padding: 4px 8px;
                background: transparent;
                text-align: left;
            }

            .zc-amount-field .currency {
                position: static;
                transform: none;
                margin-left: 4px;
            }

            .zc-form-group label {
                font-size: 1rem;
                font-weight: 500;
                margin-bottom: 8px;
            }

            .zc-form-group input,
            .zc-form-group select,
            .zc-form-group textarea {
                font-size: 1rem;
                padding: 14px 16px;
                border-radius: 8px;
            }

            .project-selector select {
                font-size: 1rem;
                padding: 14px 16px;
            }

            .warning-message {
                font-size: 1rem;
                padding: 14px 16px;
                margin: 16px -16px;
            }

            .info-icon {
                width: 20px;
                height: 20px;
                font-size: 13px;
            }

            .info-icon::after {
                width: 280px;
                font-size: 0.85rem;
                padding: 10px 12px;
                bottom: 140%;
                left: -80px;
                transform: none;
                border-radius: 8px;
                max-width: calc(100vw - 40px);
                word-wrap: break-word;
                white-space: normal;
            }

            .info-icon::before {
                bottom: 135%;
                left: 10px;
                transform: none;
                border-width: 4px;
            }

            .progress-bar {
                margin-bottom: 32px;
            }

            .progress-line {
                width: 60px;
            }

            .progress-dot {
                width: 14px;
                height: 14px;
            }

            .zc-back-button {
                font-size: 1rem;
                padding: 14px 24px;
                margin: 16px auto 24px;
            }
        }

        @media screen and (max-width: 480px) {

            /* Augmenter la taille de police du tooltip sur mobile */
            #anonymous-tooltip-message {
                font-size: 17px !important;
                /* 13px + 4px = 17px */
                margin-top: -70px !important;
                /* Ajuster la position */
            }

            .info-icon::after {
                width: 250px;
                left: -70px;
                font-size: 0.8rem;
                padding: 8px 10px;
            }

            .info-icon::before {
                left: 15px;
            }

            .zc-calculator-container,
            .zc-donation-container {
                padding: 12px;
            }

            h1 {
                font-size: 1.6rem;
            }

            .zc-input-group label {
                font-size: 0.95rem;
            }

            .zc-calculator-container input[inputmode="decimal"] {
                width: 120px;
                font-size: 0.95rem;
            }

            .project-item input[inputmode="decimal"] {
                width: 80px;
                font-size: 0.95rem;
            }

            .total-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .total-row span:first-child {
                white-space: normal;
            }

            .total-row span:last-child {
                align-self: flex-end;
            }
        }

        /* Override thème WordPress : spécificité élevée pour les sections donation */
        /* Desktop : label et montant sur la même ligne */
        .zc-donation-container .project-item {
            display: flex !important;
            flex-direction: row !important;
            justify-content: space-between !important;
            align-items: center !important;
            flex-wrap: nowrap !important;
            min-width: 0;
        }

        .zc-donation-container .project-label {
            flex: 1 !important;
            min-width: 0 !important;
            white-space: normal !important;
            word-break: normal !important;
            overflow-wrap: break-word !important;
        }

        .zc-donation-container .zc-amount-field {
            display: inline-flex !important;
            align-items: center !important;
            flex-shrink: 0 !important;
        }

        .zc-donation-container .zc-amount-field input[inputmode="decimal"] {
            display: inline-block !important;
            width: 80px !important;
            flex-shrink: 0 !important;
        }

        /* Mobile/Tablette (≤1000px) : label AU-DESSUS du champ montant */
        @media screen and (max-width: 1000px) {
            .zc-donation-container .project-item {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 6px !important;
                justify-content: flex-start !important;
            }

            .zc-donation-container .project-label {
                width: 100% !important;
                flex: none !important;
                font-weight: 600 !important;
            }

            .zc-donation-container .zc-amount-field {
                display: flex !important;
                width: 100% !important;
                flex-shrink: unset !important;
                background: #f1f5f9 !important;
                border-radius: 8px !important;
                padding: 8px 12px !important;
                box-sizing: border-box !important;
            }

            .zc-donation-container .zc-amount-field input[inputmode="decimal"] {
                display: block !important;
                width: 100% !important;
                background: transparent !important;
                text-align: left !important;
                padding: 4px 8px !important;
            }

            .zc-donation-container .zc-amount-field .currency {
                position: static !important;
                transform: none !important;
                flex-shrink: 0;
            }
        }

        @media screen and (max-width: 480px) {
            .zc-donation-container .zc-amount-field input[inputmode="decimal"] {
                font-size: 1rem !important;
            }
        }

        /* Fix for checkboxes layout globally in the donation container */
        .zc-donation-container input[type="checkbox"] {
            width: 22px !important;
            height: 22px !important;
            min-width: 22px !important;
            max-width: 22px !important;
            flex-basis: 22px !important;
            padding: 0 !important;
            margin: 0 10px 0 0 !important;
            flex-shrink: 0 !important;
            appearance: auto !important;
            -webkit-appearance: checkbox !important;
            -moz-appearance: checkbox !important;
            box-sizing: border-box !important;
            outline: none !important;
            border: none !important;
            background: transparent !important;
        }

        /* Ensure labels next to checkboxes are close and can wrap */
        .zc-donation-container .zc-form-group[style*="row"] label,
        .zc-donation-container label[for="organization"],
        .zc-donation-container label[for="don_anonyme_unique"] {
            margin-left: 0 !important;
            white-space: normal !important;
            display: inline-block !important;
            vertical-align: top !important;
            line-height: 1.4 !important;
            font-size: 16px !important;
            /* Increased font size */
            flex: 1 !important;
            width: auto !important;
        }

        /* Fix specific for the anonymous donation container wrapper */
        .zc-donation-container input#don_anonyme_unique {
            margin-top: 2px !important;
            margin-right: 8px !important;
        }

        .zc-donation-container input#don_anonyme_unique+label {
            flex: none !important;
            display: inline-block !important;
            width: auto !important;
        }

        /* The anon container has inline style "align-items: center", we override it */
        .zc-donation-container div[style*="position: relative"] {
            display: flex !important;
            flex-direction: row !important;
            align-items: flex-start !important;
            flex-wrap: nowrap !important;
            justify-content: flex-start !important;
        }

        /* Ensure the info icon aligns well on the same line */
        .zc-donation-container span#info-icon-anonymous {
            margin-top: 1px !important;
            flex-shrink: 0 !important;
        }

        /* ========== PAYMENT SECTION (matching donner-zakat-combine) ========== */

        .zc-payment-buttons-container {
            display: flex;
            width: 100%;
            max-width: 380px;
            margin: 0 auto 24px auto;
            gap: 12px;
        }

        .zc-payment-button {
            flex: 1;
            background-color: #fff;
            border: 2px solid #d1d5db;
            border-radius: 10px;
            padding: 18px 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }

        .zc-payment-button:hover {
            border-color: #9ca3af;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .zc-payment-button.active {
            border-color: #0072b8;
            background-color: #f0f7ff;
            box-shadow: 0 0 0 3px rgba(0, 114, 184, 0.1);
        }

        .zc-payment-button.active::before {
            content: '';
            position: absolute;
            top: -8px;
            right: -8px;
            width: 22px;
            height: 22px;
            background-color: #0072b8;
            border-radius: 50%;
        }

        .zc-payment-button.active::after {
            content: '\2713';
            position: absolute;
            top: -8px;
            right: -8px;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .zc-payment-icon-container {
            margin-bottom: 8px;
        }

        .zc-payment-icon {
            width: 36px;
            height: 36px;
            margin-bottom: 6px;
        }

        .zc-payment-title {
            font-size: 14px !important;
            font-weight: 700 !important;
            color: #1e293b !important;
            margin: 0;
        }

        .zc-payment-details {
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }

        .zc-payment-info-text {
            font-size: 14px !important;
            color: #6b7280 !important;
            margin-bottom: 16px;
        }

        .zc-card-logos {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .zc-card-logo {
            width: 52px;
            height: 34px;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            transition: transform 0.3s ease;
        }

        .zc-card-logo:hover {
            transform: scale(1.08);
        }

        .zc-card-logo img {
            max-width: 90%;
            max-height: 90%;
        }

        /* ========== CTA BUTTON ========== */
        .zc-validate-payment-btn {
            background: linear-gradient(135deg, #596873 0%, #4e5d68 100%) !important;
            color: #fff !important;
            padding: 12px 12px;
            border: none !important;
            font-size: 17px !important;
            font-weight: 700 !important;
            cursor: pointer;
            transition: all 0.25s ease !important;
            margin-bottom: 20px;
            width: 100%;
            border-radius: 8px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 3px 12px rgba(89, 104, 115, 0.3) !important;
            letter-spacing: 0.2px;
            white-space: nowrap !important;
            flex-wrap: nowrap !important;
            overflow: hidden !important;
        }

        .zc-validate-payment-btn:hover {
            background: linear-gradient(135deg, #596873 0%, #4e5d68 100%) !important;
            transform: translateY(-1px);
            box-shadow: 0 5px 18px rgba(89, 104, 115, 0.4) !important;
            filter: brightness(1.06);
        }

        .zc-validate-payment-btn.submitbtn-disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .zc-validate-payment-btn.ready-to-submit {
            background: linear-gradient(135deg, #2b3035 0%, #15181a 100%) !important;
            box-shadow: 0 4px 15px rgba(21, 24, 26, 0.4) !important;
            animation: subtlePulseDzc 2s ease-in-out infinite;
        }

        .zc-validate-payment-btn.ready-to-submit:hover {
            background: linear-gradient(135deg, #2b3035 0%, #15181a 100%) !important;
            box-shadow: 0 6px 20px rgba(21, 24, 26, 0.5) !important;
            filter: brightness(1.1);
            animation: none;
        }

        /* Extend button to full column width (matching donner-zakat-combine) */
        .zc-validate-payment-btn {
            margin-left: -18px !important;
            margin-right: -18px !important;
            width: calc(100% + 36px) !important;
        }

        /* ========== SSL SECURITY INFO ========== */
        .zc-security-info {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 15px;
            text-align: left;
            font-size: 12px;
            color: #64748b;
            line-height: 1.5;
        }

        .zc-ssl-icon img {
            width: 60px;
            height: auto;
            flex-shrink: 0;
        }

        /* ========== MOBILE STICKY TOTAL BANNER ========== */
        #zc-sticky-banner {
            position: fixed;
            bottom: -100px;
            left: 0;
            width: 100%;
            background-color: #1e293b;
            color: #fff;
            text-align: left;
            padding: 14px 24px;
            box-sizing: border-box;
            font-size: 18px;
            font-weight: 700;
            z-index: 9999;
            box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
            transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: none;
            cursor: pointer;
        }
        @media screen and (max-width: 768px) {
            #zc-sticky-banner {
                display: block;
            }
        }
        #zc-sticky-banner.visible {
            bottom: 0px;
        }
        #zc-sticky-banner span {
            color: #4CAF50;
        }

        /* ========== TOTAL & FISCAL SECTION (matching donner-zakat-combine) ========== */
        .zc-total-section {
            margin-top: 28px;
            padding-top: 20px;
            border-top: 2px solid #e5e7eb;
        }

        .zc-total-box .zc-amount-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .zc-total-label {
            font-size: 18px !important;
            font-weight: 700 !important;
            margin-bottom: 10px;
            color: #1e293b !important;
        }

        .zc-total-amount-input {
            width: 150px;
            padding: 10px;
            border: 2px solid #d1d5db;
            border-radius: 6px;
            background-color: #f9fafb;
            text-align: center;
            font-size: 22px !important;
            font-weight: 700 !important;
            color: #1e293b !important;
        }

        .zc-currency {
            font-size: 22px !important;
            font-weight: 700 !important;
            color: #1e293b !important;
        }

        .zc-reduction-text {
            margin-top: 15px;
            font-size: 15px !important;
            color: #6b7280 !important;
        }

        .zc-reduction-amount {
            color: #0072b8 !important;
            padding: 2px 6px;
            border-radius: 6px;
            font-weight: 700 !important;
            display: inline-block;
            font-size: 20px !important;
            background-color: #f0f7ff;
        }

        .zc-euro-symbol {
            color: #0072b8 !important;
            font-weight: 700 !important;
            font-size: 20px !important;
        }

        .zc-fiscal-info-section {
            margin-top: 20px;
            padding: 14px;
            background-color: #f0f7ff;
            border-radius: 10px;
            border: 1px solid rgba(0, 114, 184, 0.2);
            margin-bottom: 15px;
        }

        .zc-fiscal-title {
            font-size: 14px !important;
            font-weight: 700 !important;
            color: #0072b8 !important;
            margin-bottom: 8px;
        }

        .zc-fiscal-text {
            font-size: 13px !important;
            color: #374151 !important;
            line-height: 1.5 !important;
            margin: 0;
        }

        /* ========== VALIDATION CLASSES (from donner-zakat-combine) ========== */
        .zc-form-group input.is-invalid, 
        .zc-form-group select.is-invalid, 
        .zc-form-group textarea.is-invalid,
        .zc-form-row input.is-invalid {
            border-color: #e74c3c !important;
            background-color: #fdf5f4 !important;
        }

        .zc-validate-payment-btn {
            background: linear-gradient(135deg, #596873 0%, #4e5d68 100%) !important;
            color: #fff !important;
            padding: 12px 12px;
            border: none !important;
            font-size: 17px !important;
            font-weight: 700 !important;
            cursor: pointer;
            transition: all 0.25s ease !important;
            margin-bottom: 20px;
            width: 100%;
            border-radius: 8px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 3px 12px rgba(89, 104, 115, 0.3) !important;
            letter-spacing: 0.2px;
            white-space: nowrap !important;
            flex-wrap: nowrap !important;
            overflow: hidden !important;
        }

        .zc-validate-payment-btn:hover {
            background: linear-gradient(135deg, #596873 0%, #4e5d68 100%) !important;
            transform: translateY(-1px);
            box-shadow: 0 5px 18px rgba(89, 104, 115, 0.4) !important;
            filter: brightness(1.06);
        }

        .zc-validate-payment-btn.submitbtn-disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .zc-validate-payment-btn.ready-to-submit {
            background: linear-gradient(135deg, #2b3035 0%, #15181a 100%) !important;
            box-shadow: 0 4px 15px rgba(21, 24, 26, 0.4) !important;
            animation: subtlePulseDzc 2s ease-in-out infinite;
        }

        .zc-validate-payment-btn.ready-to-submit:hover {
            background: linear-gradient(135deg, #2b3035 0%, #15181a 100%) !important;
            box-shadow: 0 6px 20px rgba(21, 24, 26, 0.5) !important;
            filter: brightness(1.1);
            animation: none;
        }

        /* Extend button to full column width (matching donner-zakat-combine) */
        .zc-validate-payment-btn {
            margin-left: -18px !important;
            margin-right: -18px !important;
            width: calc(100% + 36px) !important;
        }

        /* ========== SSL SECURITY INFO ========== */
        .zc-security-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 15px;
            text-align: left;
            font-size: 12px;
            color: #64748b;
            line-height: 1.5;
        }

        .zc-ssl-icon img {
            width: 60px;
            height: auto;
            flex-shrink: 0;
        }

        /* ========== MOBILE STICKY TOTAL BANNER ========== */
        #zc-sticky-banner {
            position: fixed;
            bottom: -100px;
            left: 0;
            width: 100%;
            background-color: #1e293b;
            color: #fff;
            text-align: left;
            padding: 14px 24px;
            box-sizing: border-box;
            font-size: 18px;
            font-weight: 700;
            z-index: 9999;
            box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
            transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: none;
            cursor: pointer;
        }
        @media screen and (max-width: 768px) {
            #zc-sticky-banner {
                display: block;
            }
        }
        #zc-sticky-banner.visible {
            bottom: 0px;
        }
        #zc-sticky-banner span {
            color: #4CAF50;
        }

        /* ========== TOTAL & FISCAL SECTION (matching donner-zakat-combine) ========== */
        .zc-total-section {
            margin-top: 28px;
            padding-top: 20px;
            border-top: 2px solid #e5e7eb;
        }

        .zc-total-box .zc-amount-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .zc-total-label {
            font-size: 18px !important;
            font-weight: 700 !important;
            margin-bottom: 10px;
            color: #1e293b !important;
        }

        .zc-total-amount-input {
            width: 150px;
            padding: 10px;
            border: 2px solid #d1d5db;
            border-radius: 6px;
            background-color: #f9fafb;
            text-align: center;
            font-size: 22px !important;
            font-weight: 700 !important;
            color: #1e293b !important;
        }

        .zc-currency {
            font-size: 22px !important;
            font-weight: 700 !important;
            color: #1e293b !important;
        }

        .zc-reduction-text {
            margin-top: 15px;
            font-size: 15px !important;
            color: #6b7280 !important;
        }

        .zc-reduction-amount {
            color: #0072b8 !important;
            padding: 2px 6px;
            border-radius: 6px;
            font-weight: 700 !important;
            display: inline-block;
            font-size: 20px !important;
            background-color: #f0f7ff;
        }

        .zc-euro-symbol {
            color: #0072b8 !important;
            font-weight: 700 !important;
            font-size: 20px !important;
        }

        .zc-fiscal-info-section {
            margin-top: 20px;
            padding: 14px;
            background-color: #f0f7ff;
            border-radius: 10px;
            border: 1px solid rgba(0, 114, 184, 0.2);
            margin-bottom: 15px;
        }

        .zc-fiscal-title {
            font-size: 14px !important;
            font-weight: 700 !important;
            color: #0072b8 !important;
            margin-bottom: 8px;
        }

        .zc-fiscal-text {
            font-size: 13px !important;
            color: #374151 !important;
            line-height: 1.5 !important;
            margin: 0;
        }

        /* ========== VALIDATION CLASSES (from donner-zakat-combine) ========== */
        .zc-form-group input.is-invalid, 
        .zc-form-group select.is-invalid, 
        .zc-form-group textarea.is-invalid,
        .zc-form-row input.is-invalid {
            border-color: #e74c3c !important;
            background-color: #fdf5f4 !important;
        }

        @keyframes dzc-shake {
            10%, 90% { transform: translate3d(-1px, 0, 0); }
            20%, 80% { transform: translate3d(2px, 0, 0); }
            30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
            40%, 60% { transform: translate3d(3px, 0, 0); }
        }
        .dzc-shake {
            animation: dzc-shake 0.4s cubic-bezier(.36,.07,.19,.97) both !important;
        }

        /* ===== FIX: Masquage du WPCode (Spécifique Bing Mobile) ===== */
        /* Supprime l'affichage résiduel des snippets WPCode ID: 19072 générés hors contexte */
        .zc-calculator-container [id*="wpcode"],
        .zc-calculator-container [class*="wpcode"],
        .zc-calculator-container [data-wpcode-id],
        .zc-donation-container [id*="wpcode"],
        .zc-donation-container [class*="wpcode"],
        .zc-donation-container [data-wpcode-id] {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
            height: 0 !important;
            width: 0 !important;
            padding: 0 !important;
            margin: 0 !important;
            position: absolute !important;
            z-index: -9999 !important;
            pointer-events: none !important;
        }
