/* Reset et base */
* {
    box-sizing: border-box;
}

.estimation-immobiliere-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.estimation-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 64px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Gestion des étapes */
.estimation-step {
    display: none;
}

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

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

/* Header des étapes */
.step-header {
    text-align: center;
    margin-bottom: 48px;
}

.step-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.step-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Sélecteur type d'estimation */
.estimation-type-selector {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 48px;
    border: 1px solid #e5e7eb;
}

.selector-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.estimation-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.estimation-type-card {
    background: #ffffff !important;
    border: 2px solid #d1d5db !important;
    border-radius: 16px !important;
    padding: 24px !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    outline: none !important;
    position: relative !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.estimation-type-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.estimation-type-card:hover {
    background-color: #d7d7d7 !important;
    border-color: #9ca3af !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.estimation-type-card.active {
    border-color: #2d3748 !important;
    border-width: 3px !important;
    padding: 23px !important;
    background: #d7d7d7 !important;
    box-shadow: 0 4px 16px rgba(45, 55, 72, 0.15) !important;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Checkmark pour les cartes */
.card-checkmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-checkmark svg {
    width: 16px;
    height: 16px;
    color: white;
}

.estimation-type-card.active .card-checkmark,
.type-bien-card.active .card-checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Icône pour les cartes d'estimation */
.card-icon-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    object-fit: contain;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Formulaire */
.estimation-form {
    margin-top: 24px;
}

.form-section {
    margin-bottom: 28px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.form-label-centered {
    justify-content: center;
    text-align: center;
}

.label-icon {
    width: 16px;
    height: 16px;
    color: #718096;
}

.form-input {
    width: 100% !important;
    padding: 18px 24px !important;
    font-size: 16px !important;
    color: #1a1a1a !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.form-input:focus {
    border-color: #6b7280 !important;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1) !important;
}

.form-input::placeholder {
    color: #9ca3af;
}

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

/* Champs détaillés */
.detailed-fields {
    margin-top: 40px !important;
    padding: 32px !important;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%) !important;
    border-radius: 20px !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 24px 0;
    letter-spacing: -0.3px;
}

/* Options grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.option-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.option-checkbox[style*="display: none"],
.option-checkbox[style*="display:none"] {
    display: none !important;
}

.option-checkbox:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.option-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 6px;
}

.option-checkbox input[type="checkbox"]:checked + .checkbox-label {
    color: #000;
    font-weight: 600;
}

.option-checkbox:has(input[type="checkbox"]:checked) {
    border-color: #000;
    background: #f7fafc;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.checkbox-label {
    font-size: 14px;
    color: #2d3748;
    font-weight: 500;
    cursor: pointer;
}

/* Type de bien grid */
.type-bien-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.type-bien-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 24px 32px !important;
    background: #ffffff !important;
    border: 2px solid #d1d5db !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    outline: none !important;
    text-align: left !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
}

.type-bien-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, #2d3748 0%, #1a202c 100%);
    opacity: 0;
    transition: all 0.25s ease;
}

.type-bien-card:hover {
    background-color: #d7d7d7 !important;
    border-color: #9ca3af !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.type-bien-card:hover::before {
    opacity: 0;
}

.type-bien-card.active {
    border-color: #2d3748 !important;
    border-width: 3px !important;
    padding: 23px 31px !important;
    background: #d7d7d7 !important;
    box-shadow: 0 4px 16px rgba(45, 55, 72, 0.15) !important;
}

.type-bien-card.active::before {
    opacity: 0;
}

.card-icon-svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    stroke-width: 2;
    transition: transform 0.25s ease;
    color: #6b7280;
}

.type-bien-card.active .card-icon-svg {
    color: #2d3748;
}

.type-bien-card:hover .card-icon-svg {
    transform: scale(1.05);
}

.card-icon-img-bien {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.type-bien-card:hover .card-icon-img-bien {
    transform: scale(1.05);
}

.card-label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    text-align: left;
    color: #1a1a1a;
    flex: 1;
}

/* Adresse autocomplete */
.address-input-wrapper {
    position: relative !important;
}

.address-suggestions {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-top: none !important;
    border-radius: 0 0 16px 16px !important;
    margin-top: -16px !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    z-index: 999999 !important;
    display: none !important;
    visibility: hidden !important;
    isolation: isolate !important;
    pointer-events: auto !important;
}

.address-suggestions.active {
    display: block !important;
    visibility: visible !important;
}

.address-suggestion-item {
    padding: 16px 20px !important;
    cursor: pointer !important;
    border-bottom: 1px solid #f7fafc !important;
    font-size: 15px !important;
    color: #2d3748 !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    background: #ffffff !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

.address-suggestion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #000;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.address-suggestion-item:hover {
    background: #f7fafc !important;
    color: #000 !important;
    padding-left: 24px !important;
}

.address-suggestion-item:hover::before {
    opacity: 1;
}

.address-suggestion-item:last-child {
    border-bottom: none;
}

/* Boutons */
.btn-primary {
    width: 100% !important;
    padding: 20px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: #000 !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: none !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 32px !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #1a1a1a !important;
    transform: translateY(-1px) !important;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.estimation-btn {
    width: 100% !important;
    padding: 20px 32px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: #000 !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.estimation-btn-secondary,
.btn-secondary {
    background: #000 !important;
    color: #ffffff !important;
    border: 3px solid #000 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.estimation-btn-secondary:hover,
.btn-secondary:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #ffffff !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}

.estimation-btn-secondary:active,
.btn-secondary:active {
    transform: translateY(0) !important;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.btn-link {
    background: transparent;
    border: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.btn-link:hover {
    color: #333;
}

.form-actions {
    margin-top: 16px;
    text-align: center;
}

/* Banner de contact */
.contact-banner {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border: 3px solid #000;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000 0%, #333 100%);
}

.banner-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 12px 0;
}

.banner-text {
    font-size: 16px;
    color: #2d3748;
    margin: 0;
    line-height: 1.6;
}

/* Calcul en cours */
.calculation-progress {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.progress-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 14px 0;
    letter-spacing: -0.5px;
}

.progress-text {
    font-size: 17px;
    opacity: 0.95;
    margin: 0 0 48px 0;
}

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

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.progress-step-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-step.active .progress-step-icon {
    background: #f6eb61;
    box-shadow: 0 0 20px rgba(246, 235, 97, 0.6);
}

.progress-step.completed .progress-step-icon {
    background: #f6eb61;
    box-shadow: 0 0 15px rgba(246, 235, 97, 0.5);
}

.progress-step-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.progress-step-check {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.progress-step-label {
    font-size: 13px;
    opacity: 0.85;
    text-align: center;
    line-height: 1.3;
}

.progress-step.active .progress-step-label {
    opacity: 1;
    font-weight: 600;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #f6eb61;
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(246, 235, 97, 0.5);
}

/* Résultat */
.result-card {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 24px;
    padding: 52px 44px;
    color: #ffffff;
    margin-bottom: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.result-header {
    text-align: center;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 28px;
}

.result-label {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.result-value {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1;
    letter-spacing: -1px;
}

.result-range {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.result-details {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.result-detail {
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 10px;
    font-weight: 500;
}

.detail-value {
    display: block;
    font-size: 28px;
    font-weight: 600;
}

.result-disclaimer {
    font-size: 13px;
    color: #718096;
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

/* Liste des transactions */
.transactions-list {
    background: #f7fafc;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.transactions-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 24px 0;
    text-align: center;
}

.transactions-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transaction-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.transaction-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.transaction-number {
    font-size: 14px;
    font-weight: 700;
    color: #4a5568;
    background: #edf2f7;
    padding: 4px 12px;
    border-radius: 12px;
}

.transaction-date {
    font-size: 13px;
    color: #718096;
}

.transaction-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.transaction-info {
    flex: 1;
}

.transaction-address {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 6px;
}

.transaction-details {
    font-size: 14px;
    color: #718096;
}

.transaction-price {
    text-align: right;
    flex-shrink: 0;
}

.price-main {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.price-m2 {
    font-size: 13px;
    color: #718096;
}

/* Message de succès */
.success-card {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 60px 44px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px auto;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 25px -5px rgba(72, 187, 120, 0.3);
}

.success-title {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.success-text {
    font-size: 17px;
    color: #718096;
    margin: 10px 0;
    line-height: 1.6;
}

/* Message d'erreur */
.error-message {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 3px solid #fc8181;
    border-radius: 16px;
    padding: 20px 28px;
    margin-bottom: 32px;
    color: #c53030;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(252, 129, 129, 0.3);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .estimation-container {
        padding: 36px 28px;
        border-radius: 24px;
    }

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

    .step-subtitle {
        font-size: 16px;
    }

    .estimation-type-grid,
    .form-row,
    .result-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .type-bien-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .type-bien-card {
        padding: 28px 20px;
        min-height: 120px;
    }

    .result-value {
        font-size: 44px;
    }

    .result-card {
        padding: 44px 32px;
        border-radius: 20px;
    }

    .calculation-progress {
        padding: 52px 32px;
        border-radius: 20px;
    }

    .progress-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .progress-step-label {
        font-size: 13px;
    }

    .btn-primary, .estimation-btn {
        padding: 18px 28px;
    }
}

@media (max-width: 480px) {
    .estimation-immobiliere-wrapper {
        padding: 12px;
    }

    .estimation-container {
        padding: 28px 20px;
        border-radius: 16px;
    }

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

    .step-subtitle {
        font-size: 15px;
    }

    .estimation-type-selector {
        padding: 20px;
    }

    .result-value {
        font-size: 38px;
    }

    .success-card {
        padding: 40px 24px;
    }

    .estimation-unavailable-message {
        padding: 20px;
    }

    .estimation-unavailable-message h3 {
        font-size: 18px;
    }

    .estimation-unavailable-message .main-text,
    .estimation-unavailable-message .success-text {
        font-size: 14px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    #btn-retry-estimation {
        width: 100%;
    }
}

/* Message estimation non disponible */
.estimation-unavailable-message {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 2px solid #fb923c;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
}

.estimation-unavailable-message .warning-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.estimation-unavailable-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #9a3412;
    margin: 0 0 20px 0;
}

.estimation-unavailable-message .main-text {
    font-size: 16px;
    color: #c2410c;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.estimation-unavailable-message .success-text {
    background: #dbeafe;
    border-left: 4px solid #2563eb;
    padding: 20px;
    border-radius: 8px;
    color: #1e3a8a;
    font-size: 16px;
    margin: 0 0 30px 0;
    text-align: left;
    line-height: 1.6;
}

.estimation-unavailable-message .success-text strong {
    font-weight: 700;
}

.estimation-unavailable-message .action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

#btn-retry-estimation {
    background: #f97316;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#btn-retry-estimation:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
