/* Overlay */
.folio3-largeqty-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

/* Modal */
.folio3-largeqty-popup-modal {
    background: #fff;
    padding: 40px 36px 32px 36px;
    max-width: 600px;
    margin: auto;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

/* Close Button */
.folio3-largeqty-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    font-family: inherit;
}
.folio3-largeqty-popup-close-hover {
    color: #e74c3c !important;
}

/* Title */
.folio3-largeqty-popup-title-wrap {
    text-align: center;
    margin-bottom: 22px;
}
.folio3-largeqty-popup-title {
    font-size: 3.0rem;
    font-weight: 900;
    color: #222;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

/* Message */
.folio3-largeqty-popup-message {
    font-size: 1.6rem;
    color: #444;
    margin-bottom: 28px;
    line-height: 1.7;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    font-weight: 500;
}

/* Form */
.folio3-largeqty-contact-form {
    margin-top: 10px;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}
.folio3-largeqty-form-group {
    margin-bottom: 16px;
}
.folio3-largeqty-input,
.folio3-largeqty-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 7px;
    font-size: 1.6rem;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    box-sizing: border-box;
    font-weight: 400;
    background: #fafbfc;
    color: #222;
    transition: border-color 0.2s;
}
.folio3-largeqty-input:focus,
.folio3-largeqty-textarea:focus {
    border-color: #222;
    outline: none;
}
.folio3-largeqty-textarea {
    min-height: 100px;
    resize: vertical;
    font-size: 1.6rem;
}
.folio3-largeqty-submit-btn {
    background: #222;
    color: #fff;
    padding: 16px 0;
    width: 100%;
    border: none;
    border-radius: 7px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.folio3-largeqty-submit-btn:hover {
    background: #444;
}

/* Success Message */
.folio3-largeqty-contact-success {
    display: none;
    color: green;
    margin-top: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.folio3-largeqty-success-icon {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}
.folio3-largeqty-success-text {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.6rem;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

.folio3-largeqty-title-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    vertical-align: middle;
}
.folio3-largeqty-icon-input {
    display: flex;
    align-items: center;
    gap: 8px;
}
.folio3-largeqty-input-icon {
    display: flex;
    align-items: center;
    margin-right: 8px;
    color: #888;
    min-width: 24px;
    justify-content: center;
}
.folio3-largeqty-icon-input .folio3-largeqty-input,
.folio3-largeqty-icon-input .folio3-largeqty-textarea {
    flex: 1 1 auto;
    margin-left: 0;
} 