/* 定制表单样式 */
.ib-customizer-panel {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ib-field-group {
    margin-bottom: 20px;
}

.ib-field-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.ib-accessories-list {
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
}

.ib-accessory-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.ib-accessory-item:last-child {
    border-bottom: none;
}

.ib-accessory-name {
    flex: 2;
}

.ib-accessory-price,
.ib-accessory-diameter {
    flex: 1;
    color: #666;
}

.ib-accessory-qty {
    width: 70px;
}

.ib-price-display {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.2em;
    margin: 20px 0;
}

.ib-suggestions {
    background: #f0f8e8;
    padding: 15px;
    border-radius: 5px;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .ib-accessory-item {
        flex-wrap: wrap;
    }
    .ib-accessory-name,
    .ib-accessory-price,
    .ib-accessory-diameter {
        flex: 1 1 100%;
        margin-bottom: 5px;
    }
    .ib-accessory-qty {
        width: 100%;
    }
    .gform_wrapper .gfield {
        width: 100% !important;
        margin-bottom: 15px;
    }
}