.bolt-qc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.bolt-qc-product {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #f9fafb;
}

.bolt-qc-product-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    flex-shrink: 0;
}

.bolt-qc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.bolt-qc-product-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.bolt-qc-product-price {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
}

.bolt-qc-form {
    position: relative;
}

.bolt-qc-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

.bolt-qc-field {
    flex: 1;
    min-width: 250px;
    padding: 0 10px;
}

.bolt-qc-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.bolt-qc-field input,
.bolt-qc-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.bolt-qc-field input:focus,
.bolt-qc-field select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.bolt-qc-error {
    margin-top: 4px;
    font-size: 12px;
    color: #dc2626;
    min-height: 18px;
}

.bolt-qc-submit {
    width: 100%;
    padding: 12px 24px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.bolt-qc-submit:hover {
    background-color: #1d4ed8;
}

.bolt-qc-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
    color: #4b5563;
}

.iti {
    width: 100%;
}

@media (max-width: 768px) {
    .bolt-qc-field {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
}