   /* =============================================
   ESTIMATE MODAL - Pixel Perfect Styles
   ============================================= */

/* Dialog sizing */
.estimate-modal-dialog {
    max-width: 820px;
    width: 95%;
}

/* Modal container */
.estimate-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    position: relative;
   
}

/* Close button - top right circle X */
.estimate-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    line-height: 1;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}

.estimate-modal-close:hover {
    background: #f0f0f0;
    color: #111;
}

/* LEFT PANEL */
.estimate-modal-left {
    padding: 36px 34px 30px 34px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* "Unlock your offer & Get" */
.em-unlock-text {
    font-size: 1.22rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

/* Offset line: FLAT + 25% OFF */
.em-offer-line {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 4px;
}

/* Vertical "FLAT" small text */
.em-flat-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: #e87722;
    letter-spacing: 1px;
    line-height: 1;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin-bottom: 4px;
    text-transform: uppercase;
}

/* Large "25% OFF" */
.em-discount-text {
    font-size: 3.6rem;
    font-weight: 800;
    color: #e87722;
    line-height: 1;
    letter-spacing: -2px;
}

/* "on your Kitchen Design" */
.em-sub-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 14px 0;
}

/* Divider line below header */
.em-divider {
    width: 120px;
    border: none;
    border-top: 1.5px solid #ddd;
    margin: 0 0 20px 0;
}

/* Input wrapper */
.em-input-wrap {
    margin-bottom: 14px;
}

/* Input fields — grey bg, rounded, no visible border */
.em-input {
    width: 100%;
    padding: 13px 16px;
    background: #f2f2f2;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.92rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.em-input::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.em-input:focus {
    background: #fff;
    border-color: #e87722;
}

/* Terms text */
.em-terms {
    font-size: 0.78rem;
    color: #777;
    margin-bottom: 16px;
    line-height: 1.5;
}

.em-terms a {
    color: #e9212e;
    text-decoration: none;
    font-weight: 500;
}

.em-terms a:hover {
    text-decoration: underline;
}

/* CLAIM NOW button */
.em-claim-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e9212e, #e9212e);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(232, 119, 34, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 14px;
}

.em-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 119, 34, 0.55);
}

.em-claim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Limited time offer text */
.em-limited {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* RIGHT PANEL - kitchen image */
.estimate-modal-right {
    position: relative;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
}

.em-kitchen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
   
}

/* Mobile responsive */
@media (max-width: 767.98px) {
    .estimate-modal-left {
        padding: 28px 22px 24px 22px;
    }

    .em-discount-text {
        font-size: 2.8rem;
    }

    .em-unlock-text {
        font-size: 1.05rem;
    }
}