.dv-quote-wrap {
    width: 100%;
    margin-top: 12px;
}

.dv-quote-open,
.dv-quote-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #e00078, #ff6a00);
    border: 0;
    border-radius: 6px;
    box-shadow: 0 7px 18px rgba(224, 0, 120, 0.24);
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.7px;
    line-height: 1.3;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dv-quote-open:hover,
.dv-quote-open:focus-visible,
.dv-quote-submit:hover,
.dv-quote-submit:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 106, 0, 0.34);
    outline: 2px solid #ffffff;
    outline-offset: -4px;
}

.dv-quote-open-icon,
.dv-quote-heading-icon {
    margin-right: 8px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
}

body.dv-quote-modal-open {
    overflow: hidden;
}

.dv-quote-modal[hidden] {
    display: none !important;
}

.dv-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dv-quote-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(3px);
}

.dv-quote-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.dv-quote-close {
    position: absolute;
    top: 10px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #333333;
    background: #f4f4f4;
    border: 0;
    border-radius: 50%;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.dv-quote-heading {
    display: flex;
    align-items: center;
    margin: -26px -26px 20px;
    padding: 22px 56px 22px 26px;
    color: #ffffff;
    background: linear-gradient(135deg, #e00078, #ff6a00);
    border-radius: 9px 9px 0 0;
}

.dv-quote-heading h2 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
}

.dv-quote-heading p {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.45;
}

.dv-quote-heading-icon {
    flex: 0 0 auto;
    font-size: 28px;
}

.dv-quote-product {
    margin-bottom: 18px;
    padding: 12px 14px;
    color: #252525;
    background: #fff6f9;
    border-left: 4px solid #e00078;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.dv-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dv-quote-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    color: #222222;
    font-size: 13px;
    font-weight: 700;
}

.dv-quote-field-full {
    grid-column: 1 / -1;
}

.dv-quote-field input,
.dv-quote-field select,
.dv-quote-field textarea {
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 10px 12px;
    color: #222222;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    box-shadow: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.dv-quote-field textarea {
    min-height: 100px;
    resize: vertical;
}

.dv-quote-field input:focus,
.dv-quote-field select:focus,
.dv-quote-field textarea:focus {
    border-color: #e00078;
    box-shadow: 0 0 0 3px rgba(224, 0, 120, 0.12);
    outline: 0;
}

.dv-quote-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 16px 0;
    color: #444444;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
}

.dv-quote-consent input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: #e00078;
}

.dv-quote-consent a {
    color: #c00068;
    font-weight: 800;
    text-decoration: underline;
}

.dv-quote-submit:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.dv-quote-status {
    display: none;
    margin-top: 12px;
    padding: 11px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.dv-quote-status.is-visible {
    display: block;
}

.dv-quote-status.is-success {
    color: #126b32;
    background: #edf9f1;
    border: 1px solid #bfe6cb;
}

.dv-quote-status.is-error {
    color: #9c1d1d;
    background: #fff0f0;
    border: 1px solid #f2c5c5;
}

.dv-quote-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 600px) {
    .dv-quote-modal {
        align-items: flex-end;
        padding: 0;
    }

    .dv-quote-dialog {
        width: 100%;
        max-height: 92vh;
        padding: 20px;
        border-radius: 12px 12px 0 0;
    }

    .dv-quote-heading {
        margin: -20px -20px 18px;
        padding: 20px 52px 20px 20px;
        border-radius: 11px 11px 0 0;
    }

    .dv-quote-heading h2 {
        font-size: 19px;
    }

    .dv-quote-heading p {
        font-size: 12px;
    }

    .dv-quote-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dv-quote-field-full {
        grid-column: auto;
    }
}

