/* CORRECTION BUG : Message de succès caché par défaut */
.success-message {
    display: none !important;
}

.success-message.show {
    display: block !important;
}

/* Style du questionnaire adapté au style du site */
#zoneeco-questionnaire-wrapper {
    width: 100%;
    max-width: 720px;
    margin: 40px auto;
    padding: 0 20px;
}

.zoneeco-questionnaire-header {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-top: 4px solid #5ce65c;
    padding: 24px;
    margin-bottom: 24px;
}

.zoneeco-main-title {
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
}

.zoneeco-subtitle {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

#zoneeco-questionnaire-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoneeco-questionnaire {
    width: 100%;
    max-width: 720px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-top: 4px solid #5ce65c;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

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

.question-step {
    display: none;
    min-height: 500px;
    padding: 40px 24px;
}

.question-step.active {
    display: block;
}

.question-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.question-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: #5ce65c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(92, 230, 92, 0.3);
}

.question-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.question-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.4;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.brand-options,
.yesno-options {
    max-width: 100%;
    margin: 0 auto 24px;
}

.option-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    position: relative;
}

.option-card:hover {
    border-color: #5ce65c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(92, 230, 92, 0.2);
    background: #ffffff;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.option-icon svg {
    width: 28px;
    height: 28px;
    color: #5ce65c;
}

.option-icon.success svg {
    color: #5ce65c;
}

.option-icon.warning svg {
    color: #ff9800;
}

.option-icon.error svg {
    color: #f44336;
}

.option-card span {
    position: relative;
    z-index: 1;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.options-list::-webkit-scrollbar {
    width: 6px;
}

.options-list::-webkit-scrollbar-track {
    background: #f9f9f9;
    border-radius: 3px;
}

.options-list::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 3px;
}

.option-card.list-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 16px 20px;
}

.option-card.list-item .option-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.progress-indicator {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.progress-indicator span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: #f9f9f9;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #5ce65c;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-back:hover {
    border-color: #5ce65c;
    color: #1a1a1a;
    background: #f9f9f9;
}

.btn-back svg {
    width: 18px;
    height: 18px;
}

.result-step {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-content {
    text-align: center;
    width: 100%;
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.6s ease-out;
}

.result-icon.success-animation {
    background: #5ce65c;
}

.result-icon.refuse-animation {
    background: #ff9800;
}

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

.result-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 3;
}

.result-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.refuse-title {
    color: #ff9800;
}

.device-summary {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
}

.device-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.device-specs {
    font-size: 14px;
    color: #666;
}

.price-display {
    background: #5ce65c;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(92, 230, 92, 0.3);
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.95;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
}

.result-message {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 100%;
}

.refuse-message {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.refuse-message p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.refuse-message p:last-child {
    margin-bottom: 0;
}

.refuse-message strong {
    color: #1a1a1a;
    font-weight: 700;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.eco-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.eco-feature svg {
    width: 32px;
    height: 32px;
    color: #5ce65c;
}

.eco-feature span {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

.result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #5ce65c;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(92, 230, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 230, 92, 0.4);
    background: #4dd84d;
}

.btn-secondary {
    background: #f9f9f9;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #5ce65c;
    background: #ffffff;
}

.btn-primary svg,
.btn-secondary svg {
    width: 18px;
    height: 18px;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 1000;
}

.loading-overlay.show {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    animation: rotate 1s linear infinite;
}

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

.loading-spinner circle {
    stroke: #5ce65c;
    stroke-dasharray: 80;
    stroke-dashoffset: 60;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 80;
    }
    50% {
        stroke-dashoffset: 20;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 80;
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .zoneeco-main-title {
        font-size: 20px;
    }
    
    .zoneeco-subtitle {
        font-size: 13px;
    }
    
    .question-step {
        padding: 32px 20px;
    }
    
    .question-title {
        font-size: 18px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 38px;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }
}

/* =================================================================
   FORMULAIRE - STYLE IDENTIQUE AU QUESTIONNAIRE
   ================================================================= */

/* =================================================================
   STYLE SÉPARÉ ET PROPRE - VERSION 7.0
   ================================================================= */

/* =========================================
   RÉCAPITULATIF DE L'APPAREIL
   ========================================= */

.recap-section {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8e8e8;
}

.section-header svg {
    color: #5ce65c;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.recap-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Tableau récapitulatif */
.recap-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.recap-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.recap-table tbody tr:last-child {
    border-bottom: none;
}

.recap-table tbody tr:hover {
    background-color: #f8f9fa;
}

.recap-table td {
    padding: 14px 18px;
}

.recap-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: #5ce65c;
    flex-shrink: 0;
}

.recap-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: right;
    width: 50%;
}

/* Prix */
.price-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5ce65c 0%, #4dd84d 100%);
}

.price-header {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #5ce65c;
    margin-bottom: 16px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}

.price-amount .euro {
    font-size: 32px;
    font-weight: 800;
    color: #5ce65c;
    margin-top: 8px;
}

.price-amount .value {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.price-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    font-style: italic;
}

/* =========================================
   FORMULAIRE DE CONTACT
   ========================================= */

.form-section {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
}

.contact-form {
    margin-top: 0;
}

/* Blocs du formulaire */
.form-block {
    margin-bottom: 32px;
}

.form-block:last-of-type {
    margin-bottom: 0;
}

.block-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.optional {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    font-style: italic;
}

/* Lignes du formulaire */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row-2:last-child {
    margin-bottom: 0;
}

/* Groupe d'input */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.required {
    color: #5ce65c;
    font-weight: 800;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #5ce65c;
    box-shadow: 0 0 0 3px rgba(92, 230, 92, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #bbb;
}

.input-group textarea {
    resize: vertical;
    min-height: 60px;
    line-height: 1.5;
}

.help-text {
    font-size: 12px;
    color: #999;
    margin: 4px 0 0 0;
    line-height: 1.5;
}

/* Footer du formulaire */
.form-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7e6 100%);
    border-radius: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.security-badge svg {
    color: #5ce65c;
    flex-shrink: 0;
}

/* Bouton d'envoi */
.submit-button {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #5ce65c;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #5ce65c 0%, #4dd84d 100%);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 230, 92, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-normal,
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Spinner */
.spinner {
    animation: rotate 1s linear infinite;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Aide contact */
.contact-help {
    text-align: center;
    margin-top: 20px;
}

.contact-help p {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #5ce65c;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-links a:hover {
    color: #4dd84d;
    transform: translateY(-1px);
}

.contact-links a svg {
    flex-shrink: 0;
}

/* =========================================
   MESSAGE DE SUCCÈS
   ========================================= */

#successMessageContainer .success-message {
    background: #ffffff;
    border: 3px solid #5ce65c;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 32px 0;
    box-shadow: 0 8px 24px rgba(92, 230, 92, 0.2);
}

#successMessageContainer .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #5ce65c 0%, #4dd84d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(92, 230, 92, 0.3);
}

#successMessageContainer .success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 3;
}

#successMessageContainer .success-message h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

#successMessageContainer .success-message p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
    .recap-section,
    .form-section {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 18px;
    }
    
    .recap-table td {
        padding: 12px 14px;
    }
    
    .recap-label {
        font-size: 13px;
    }
    
    .recap-value {
        font-size: 14px;
    }
    
    .price-amount .value {
        font-size: 48px;
    }
    
    .price-amount .euro {
        font-size: 24px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .recap-section,
    .form-section {
        padding: 16px;
    }
    
    .section-header h2 {
        font-size: 16px;
    }
    
    .recap-table td {
        padding: 10px 12px;
    }
    
    .check-icon {
        width: 16px;
        height: 16px;
    }
    
    .price-box {
        padding: 24px;
    }
    
    .price-amount .value {
        font-size: 40px;
    }
    
    .submit-button {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ========================================
   RÉCAPITULATIF FINAL IMPRIMABLE
   ======================================== */

.zoneeco-recap-final {
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.recap-header-success {
    background: linear-gradient(135deg, #5ce65c 0%, #4dd84d 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.success-icon {
    margin-bottom: 20px;
    animation: successPulse 1s ease;
}

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

.recap-header-success h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.success-subtitle {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
}

.recap-content-print {
    padding: 30px;
}

.recap-reference {
    background: #f8f9fa;
    border: 2px dashed #5ce65c;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.ref-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ref-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    margin-bottom: 8px;
}

.ref-date {
    display: block;
    font-size: 14px;
    color: #666;
}

.recap-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.recap-section:last-of-type {
    border-bottom: none;
}

.recap-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.recap-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recap-item.full-width {
    grid-column: 1 / -1;
}

.recap-item .label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.recap-item .value {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.recap-price-final {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 4px solid #5ce65c;
    border-radius: 8px;
    padding: 25px;
    margin-top: 25px;
    text-align: center;
    color: white;
}

.price-label {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #5ce65c;
    margin-bottom: 10px;
}

.price-note {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

.recap-message {
    background: #f8f9fa;
    border-left: 4px solid #5ce65c;
    padding: 20px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a1a;
}

.recap-confirmation {
    background: #e8f5e9;
    border: 1px solid #5ce65c;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.recap-confirmation p {
    margin: 0;
    font-size: 15px;
    color: #1a1a1a;
}

.recap-confirmation strong {
    color: #5ce65c;
    font-weight: 700;
}

.recap-actions {
    padding: 30px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-print {
    background: linear-gradient(135deg, #5ce65c 0%, #4dd84d 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(92, 230, 92, 0.3);
}

.btn-print:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(92, 230, 92, 0.4);
}

.btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e8e8e8;
}

.btn-secondary:hover {
    border-color: #5ce65c;
    background: #f8f9fa;
}

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

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

.recap-footer {
    padding: 20px 30px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.recap-footer p {
    margin: 5px 0;
    font-size: 14px;
}

/* Version imprimée */
@media print {
    .no-print {
        display: none !important;
    }
    
    .zoneeco-recap-final {
        box-shadow: none;
        margin: 0;
        max-width: 100%;
    }
    
    .recap-section {
        page-break-inside: avoid;
    }
    
    .recap-price-final {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .recap-header-success {
        padding: 30px 20px;
    }
    
    .recap-header-success h1 {
        font-size: 22px;
    }
    
    .recap-content-print {
        padding: 20px;
    }
    
    .recap-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-row {
        grid-template-columns: 1fr;
    }
    
    .price-value {
        font-size: 28px;
    }
}
