/* Message de remerciement */
.altitude-cloe-thankyou-message {
    background: linear-gradient(135deg, #021657 0%, #032079 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(2, 22, 87, 0.3);
    animation: slideInDown 0.6s ease-out;
}

.thankyou-header {
    text-align: center;
    margin-bottom: 25px;
}

.thankyou-header h2 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
}

.thankyou-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0;
}

.thankyou-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ff6d00;
}

.thankyou-step {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
}

.thankyou-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.step-content h3 {
    color: white !important;
    margin: 0 0 8px 0;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.step-content ul {
    margin: 10px 0 0 20px;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
}

.step-content li {
    margin-bottom: 5px;
}

.thankyou-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.thankyou-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

.thankyou-footer .footer-icon {
    font-size: 16px;
    margin-right: 5px;
}

.thankyou-footer a {
    color: #ff6d00;
    text-decoration: underline;
    font-weight: 600;
}

/* Méta CLOE dans les détails de commande */
.cloe-order-item-meta {
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #ff6d00;
}

.cloe-order-item-meta h4 {
    margin: 0 0 12px 0;
    color: #021657;
    font-size: 14px;
    font-weight: 600;
}

.cloe-order-item-meta dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 15px;
    font-size: 14px;
}

.cloe-order-item-meta dt {
    font-weight: 600;
    color: #555;
    margin: 0;
}

.cloe-order-item-meta dd {
    margin: 0;
    color: #333;
}

/* Animation */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .altitude-cloe-thankyou-message {
        padding: 20px;
    }

    .thankyou-header h2 {
        font-size: 22px;
    }

    .thankyou-header p {
        font-size: 15px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .cloe-order-item-meta dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .cloe-order-item-meta dt {
        margin-bottom: 2px;
    }

    .cloe-order-item-meta dd {
        margin-bottom: 12px;
        padding-left: 10px;
    }
}