#askpro-product-widget {
    display: flex;
    border: 1px solid #c3c4c7;
    padding: 20px 37px;
    max-width: 1250px;
    margin: 16px 0;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}

.askpro-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding-right: 20px;
    border-right: 1px solid #eee;
}

.askpro-widget-icon svg {
    width: 132%;
    height: 142px;
    margin-left: -28px;
}

.askpro-widget-text-header h2 {
    font-size: 1.9em;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.askpro-widget-text-header p {
    font-size: 1.1em;
    color: #666;
    margin: 0;
}

.askpro-widget-main-content {
    flex-grow: 1;
    padding-left: 20px;
}

.askpro-query-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

#askpro-product-widget input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    min-width: 0;
}

#askpro-product-widget button {
    padding: 10px 20px;
    border-radius: 4px;
    background: #ff8c00;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 5px;
}

#askpro-submit:hover {
    background: white;
    color: #ff8c00;
    border: 2px solid #ff8c00;
}

.askpro-widget-disclaimer {
    font-size: 12px;
    color: #777;
}

#askpro-product-widget #askpro-response {
    margin-top: 12px;
    min-height: 24px;
    color: #333;
}

#askpro-product-widget #askpro-response.askpro-response-active {
    margin-top: 22px;
    margin-bottom: 10px;
    min-height: 24px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 4px;
}

.askpro-response-skeleton {
    padding: 0;
}

.askpro-skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    margin-bottom: 8px;
    height: 16px;
    animation: loading 1.5s infinite linear;
}

.askpro-skeleton-line.short {
    width: 60%;
}

.askpro-skeleton-line.medium {
    width: 80%;
}

.askpro-skeleton-line.long {
    width: 95%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}