/* ==========================================================================
   CONFIGURATOR PAGE LAYOUT
   ========================================================================== */
.config-hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px;
    background: linear-gradient(180deg, rgba(45, 54, 63, 0.03) 0%, transparent 100%);
    text-align: center;
}

.config-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

/* ==========================================================================
   PRODUCT SELECTOR TABS
   ========================================================================== */
.tab-label-mobile {
    display: none;
}

.tab-label-desktop {
    display: inline;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    background-color: rgba(45, 54, 63, 0.05);
    padding: 6px;
    border-radius: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    border: none;
    background: transparent;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

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

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--light);
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   LEFT COLUMN: INTERACTIVE VISUALIZER
   ========================================================================== */
.config-preview-pane {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    background-color: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.preview-viewport {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.8s ease; /* Pour les transitions de couleur */
}

/* Dynamic CSS Color Overlays over the preview */
.preview-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color; /* Permet d'injecter la couleur sur l'image */
    pointer-events: none;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

/* Overlay color states based on selected RAL */
.preview-overlay-ral9016 { background-color: #ffffff; opacity: 0.15; }
.preview-overlay-ral7016 { background-color: #383e42; mix-blend-mode: overlay; opacity: 0.45; }
.preview-overlay-ral9005 { background-color: #111111; mix-blend-mode: multiply; opacity: 0.6; }

/* Specs Badge inside visualizer */
.preview-specs-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(18, 20, 23, 0.8);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-medium);
}

.preview-specs-badge span {
    font-weight: 600;
}

.preview-specs-badge span.accent-text {
    color: var(--accent);
}

.qualicoat-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--backdrop-blur);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.qualicoat-watermark img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   RIGHT COLUMN: DYNAMIC PANEL (STEPS)
   ========================================================================== */
.config-panel {
    background-color: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.config-step {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 30px;
}

.config-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-num {
    background-color: rgba(45, 54, 63, 0.06);
    color: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ==========================================================================
   STEP 1: SELECT TYPE & FORM OPTIONS
   ========================================================================== */
.type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.type-card {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.type-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.type-card.active {
    border-color: var(--primary);
    background-color: rgba(45, 54, 63, 0.02);
}

.type-card.active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 35px 35px 0;
    border-color: transparent var(--primary) transparent transparent;
}

.type-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.type-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* For Gate fill options */
.select-wrapper {
    margin-top: 15px;
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background-color: var(--light);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    appearance: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.8rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

/* ==========================================================================
   STEP 2: SLIDERS & DIMENSIONS
   ========================================================================== */
.dimension-sliders {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}

.slider-value {
    color: var(--accent);
    font-weight: 700;
}

.slider-control {
    position: relative;
    display: flex;
    align-items: center;
}

input[type="range"].custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    margin: 10px 0;
}

input[type="range"].custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--light);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: var(--transition-fast);
}

input[type="range"].custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--accent);
}

.slider-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   STEP 3: COLOR SWATCHES (RAL CHIPS)
   ========================================================================== */
.color-picker-grid {
    display: flex;
    gap: 20px;
}

.color-swatch-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.color-swatch {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    transition: var(--transition-smooth);
}

.color-swatch-wrapper:hover .color-swatch {
    transform: translateY(-2px);
}

.color-swatch-wrapper.active .color-swatch {
    box-shadow: 0 0 0 3px var(--light), 0 0 0 5px var(--primary);
    transform: scale(1.05);
}

.color-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.color-swatch-wrapper.active .color-name {
    color: var(--primary);
    font-weight: 700;
}

/* Swatch custom colors */
.bg-ral9016 { background-color: var(--ral-9016); }
.bg-ral7016 { background-color: var(--ral-7016); }
.bg-ral9005 { background-color: var(--ral-9005); }

/* ==========================================================================
   STEP 4: OPTIONS (CHECKBOX CARDS)
   ========================================================================== */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-checkbox-card {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.option-checkbox-card:hover {
    border-color: var(--primary-light);
}

.option-checkbox-card.active {
    border-color: var(--primary);
    background-color: rgba(45, 54, 63, 0.01);
}

.option-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.option-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(45, 54, 63, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.option-checkbox-card.active .option-icon {
    background-color: var(--primary);
    color: var(--light);
}

.option-icon svg {
    width: 22px;
    height: 22px;
}

.option-text {
    display: flex;
    flex-direction: column;
}

.option-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.option-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.option-price-tag {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
}

.option-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.option-checkbox::after {
    content: '✓';
    color: var(--light);
    font-size: 0.75rem;
    font-weight: 900;
    display: none;
}

.option-checkbox-card.active .option-checkbox {
    background-color: var(--primary);
    border-color: var(--primary);
}

.option-checkbox-card.active .option-checkbox::after {
    display: block;
}

/* ==========================================================================
   PRICE DISPLAY & CTA BLOCK
   ========================================================================== */
.price-display-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 30px;
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.price-display-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(214, 0, 28, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

.price-amount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.price-unit {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.price-asterisk {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.3;
}

.price-cta-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* ==========================================================================
   MODAL / LEAD FORM STYLES
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 20, 23, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lead-modal {
    background-color: var(--light);
    width: 90%;
    max-width: 580px;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    transform: translateY(40px);
    transition: var(--transition-smooth);
    overflow-y: auto;
    max-height: 90vh;
}

.modal-overlay.active .lead-modal {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(45, 54, 63, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.close-modal-btn:hover {
    background-color: var(--accent);
    color: var(--light);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Config Summary in Modal */
.config-summary-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.summary-title {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 6px;
    margin-bottom: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
}

.summary-row span.label {
    color: var(--text-muted);
}

.summary-row span.value {
    font-weight: 600;
}

/* Lead Form Fields */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
}

.form-checkbox-group input {
    margin-top: 3px;
}

/* Success State Screen */
.success-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 72px;
    height: 72px;
    background-color: #25D366;
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    margin-bottom: 25px;
    animation: success-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

@keyframes success-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   CONFIGURATOR RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1024px) {
    .config-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .config-preview-pane {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .product-tabs {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        padding: 5px;
        border-radius: 20px;
        box-sizing: border-box;
        margin-top: 20px;
    }

    .tab-btn {
        width: 100%;
        padding: 10px 4px;
        font-size: 0.82rem;
        font-weight: 700;
        border-radius: 14px;
        justify-content: center;
        text-align: center;
        gap: 5px;
    }

    .tab-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .tab-label-desktop {
        display: none;
    }

    .tab-label-mobile {
        display: inline;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .config-panel {
        padding: 20px 16px;
    }
    
    .type-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 2.25rem;
    }
    
    .lead-modal {
        padding: 25px;
    }
}

/* ==========================================================================
   MANUAL DIMENSION INPUT & MEASURE GUIDE MODAL STYLES
   ========================================================================== */
.step-header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-measure-guide {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-measure-guide:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.manual-input-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.manual-input-tag {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 500;
}

.manual-input-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    padding: 2px 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.manual-input-wrapper:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.manual-dim-input {
    width: 58px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    text-align: right;
    outline: none;
    padding: 3px 2px;
}

.manual-unit {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-left: 2px;
}

/* Measure Guide Modal Styling */
.measure-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.measure-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.measure-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.96);
    transition: all 0.3s ease;
}

.measure-modal-overlay.active .measure-modal {
    transform: translateY(0) scale(1);
}

.close-measure-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
}

.close-measure-modal-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.measure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.measure-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.measure-modal-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 20px 0;
}

.measure-nav-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.measure-tab-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.measure-tab-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.measure-guide-content {
    display: none;
}

.measure-guide-content.active {
    display: block;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 700px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

.guide-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
}

.guide-step-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.guide-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.guide-schema-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.schema-svg {
    width: 100%;
    max-height: 160px;
}

.guide-instructions-list {
    margin: 0;
    padding-left: 18px;
    font-size: 0.85rem;
    color: #334155;
    line-height: 1.5;
}

.guide-instructions-list li {
    margin-bottom: 6px;
}

.guide-pro-tip {
    display: flex;
    gap: 12px;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.85rem;
    color: #92400e;
    margin-bottom: 20px;
}

.pro-tip-icon {
    font-size: 1.2rem;
}

.measure-modal-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

